X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=configure.ac;h=a1f233b6b7470de32200f0bf7363e69625d6b469;hb=f0a11927dd1519e748d2eb6ecaaa4d035693d442;hp=15470ef37cd8102dccbb74d84f68d8f007352e73;hpb=76731d4c2f47675a0ad18b4206692baac810fa4c;p=helm.git diff --git a/configure.ac b/configure.ac index 15470ef37..a1f233b6b 100644 --- a/configure.ac +++ b/configure.ac @@ -76,6 +76,7 @@ FINDLIB_COMREQUIRES="\ helm-cic_disambiguation \ helm-grafite \ helm-grafite_engine \ +helm-tptp_grafite \ helm-grafite_parser \ helm-hgdome \ helm-tactics \ @@ -144,36 +145,47 @@ 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(DISTRIBUTED) AC_SUBST(DBHOST) AC_SUBST(DEBUG) -AC_SUBST(TRANSFORMER_MODULE) -AC_SUBST(FINDLIB_REQUIRES) +AC_SUBST(DISTRIBUTED) AC_SUBST(FINDLIB_CREQUIRES) +AC_SUBST(FINDLIB_REQUIRES) AC_SUBST(HAVE_OCAMLOPT) AC_SUBST(LABLGLADECC) +AC_SUBST(MATITA_VERSION) AC_SUBST(OCAMLFIND) AC_SUBST(OCAMLPATH) AC_SUBST(RT_BASE_DIR) AC_SUBST(SRCROOT) -AC_SUBST(MATITA_VERSION) +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/help/C/version.txt Makefile.defs ])