X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fconfigure.ac;h=8b3437393c000113a3e46c017895f9f3d4a7026e;hb=1b70a1f66be53f76e475383e86d63c2b5c1fbcaa;hp=f542372f87d026d49702e769af20384ebdf43893;hpb=f4d41a527321e5fbdc10054b46ad60fe9f7f54a1;p=helm.git diff --git a/helm/software/configure.ac b/helm/software/configure.ac index f542372f8..8b3437393 100644 --- a/helm/software/configure.ac +++ b/helm/software/configure.ac @@ -5,7 +5,7 @@ AC_INIT(matita/matitaTypes.ml) DEBUG_DEFAULT="true" DEFAULT_DBHOST="mysql://mowgli.cs.unibo.it" RT_BASE_DIR_DEFAULT="`pwd`/matita" -MATITA_VERSION="0.5.5" +MATITA_VERSION="0.5.7" DISTRIBUTED="no" # "yes" for distributed tarballs # End of distribution settings @@ -79,11 +79,13 @@ helm-grafite \ helm-grafite_engine \ helm-tptp_grafite \ helm-ng_disambiguation \ +helm-ng_cic_content \ helm-grafite_parser \ helm-acic_procedural \ helm-content_pres \ helm-hgdome \ helm-tactics \ +helm-ng_tactics \ helm-cic_exportation \ " FINDLIB_CREQUIRES=" \ @@ -145,6 +147,25 @@ else fi AC_MSG_RESULT($MSG) +AC_MSG_CHECKING(--enable-annot argument) +AC_ARG_ENABLE(annot, + [ --enable-annot Turn on -dtypes compilation option], + [GIVEN="yes"; + case "${enableval}" in + yes) ANNOT=true;; + no) ANNOT=false;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-annot) ;; + esac], + [GIVEN="no"; ANNOT="false"]) +MSG=$GIVEN +if test "$ANNOT" = "true"; then + MSG="$MSG, type annotation enabled." +else + MSG="$MSG, type annotation disabled." +fi +AC_MSG_RESULT($MSG) + + AC_MSG_CHECKING(--with-runtime-dir argument) AC_ARG_WITH(runtime-dir, [ --with-runtime-dir Runtime directory (current working directory if not given)], @@ -174,6 +195,7 @@ AC_MSG_RESULT($MSG) AC_SUBST(CAMLP5O) AC_SUBST(DBHOST) AC_SUBST(DEBUG) +AC_SUBST(ANNOT) AC_SUBST(DISTRIBUTED) AC_SUBST(FINDLIB_CREQUIRES) AC_SUBST(FINDLIB_REQUIRES)