X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=configure.ac;h=ee6916cee7e3f31205e622a464df8bcab5746eed;hb=6ad533c972e6c9e9db53f38f972e7c0792160f2e;hp=afb09d8053514a0ad1fe598c4e3bf54756bb1bfb;hpb=8e20cf435e3ba53db9691e677b495816bf4d3047;p=helm.git diff --git a/configure.ac b/configure.ac index afb09d805..ee6916cee 100644 --- a/configure.ac +++ b/configure.ac @@ -3,9 +3,9 @@ AC_INIT(matita/matitaTypes.ml) # Distribution settings # (i.e. settings (automatically) manipulated before a release) DEBUG_DEFAULT="true" -DEFAULT_DBHOST="mowgli.cs.unibo.it" +DEFAULT_DBHOST="mysql://mowgli.cs.unibo.it" RT_BASE_DIR_DEFAULT="`pwd`/matita" -MATITA_VERSION="0.1.0" +MATITA_VERSION="0.2.0" DISTRIBUTED="no" # "yes" for distributed tarballs # End of distribution settings @@ -76,7 +76,10 @@ FINDLIB_COMREQUIRES="\ helm-cic_disambiguation \ helm-grafite \ helm-grafite_engine \ +helm-tptp_grafite \ helm-grafite_parser \ +helm-acic_procedural \ +helm-content_pres \ helm-hgdome \ helm-tactics \ " @@ -144,14 +147,26 @@ AC_ARG_WITH(runtime-dir, [ --with-runtime-dir Runtime directory (current working directory if not given)], [ RT_BASE_DIR="${withval}" ], [ RT_BASE_DIR="$RT_BASE_DIR_DEFAULT" ]) -AC_MSG_RESULT($RT_BASE_DIR) +MSG="$RT_BASE_DIR" +if test "yes" = "$RT_BASE_DIR"; then + MSG=" +** error: ** +** empty --with-runtime-dir argument, please use --with-runtime-dir=value **" +fi +AC_MSG_RESULT($MSG) AC_MSG_CHECKING(--with-dbhost argument) AC_ARG_WITH(dbhost, [ --with-dbhost SQL database hostname], [ DBHOST="${withval}" ], [ DBHOST="$DEFAULT_DBHOST" ]) -AC_MSG_RESULT($DBHOST) +MSG="$DBHOST" +if test "yes" = "$DBHOST"; then + MSG=" +** error: ** +** empty --with-dbhost argument, please use --with-dbhost=value **" +fi +AC_MSG_RESULT($MSG) AC_SUBST(CAMLP4O) AC_SUBST(DBHOST) @@ -170,11 +185,9 @@ AC_SUBST(TRANSFORMER_MODULE) AC_OUTPUT([ components/extlib/componentsConf.ml - matita/matita.conf.xml.devel - matita/matita.conf.xml.user - matita/matita.conf.xml.build + matita/matita.conf.xml matita/buildTimeConf.ml matita/gtkmathview.matita.conf.xml - matita/dist/version.txt + matita/help/C/version.txt Makefile.defs ])