]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/configure.ac
ocaml 3.09 transition
[helm.git] / helm / matita / configure.ac
1 AC_INIT(matitaTypes.ml)
2
3 # Distribution settings (i.e. settings to be manipulated before a release)
4 DEBUG_DEFAULT="true"
5 RT_BASE_DIR_DEFAULT="`pwd`"
6 MATITA_VERSION="0.0.1"
7 # End of distribution settings
8
9 AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
10 if test $HAVE_OCAMLC = "no"; then
11   AC_MSG_ERROR(could not find ocamlc)
12 fi
13 AC_CHECK_PROG(HAVE_OCAMLOPT, ocamlopt, yes, no)
14 if test $HAVE_OCAMLOPT = "no"; then
15   AC_MSG_WARN(could not find ocamlopt: native code compilation disabled)
16 fi
17 AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no)
18 if test $HAVE_OCAMLFIND = "yes"; then
19   OCAMLFIND="ocamlfind"
20 else
21   AC_MSG_ERROR(could not find ocamlfind)
22 fi
23 AC_CHECK_PROG(HAVE_LABLGLADECC, lablgladecc2, yes, no)
24 if test $HAVE_LABLGLADECC = "yes"; then
25   LABLGLADECC="lablgladecc2"
26 else
27   AC_MSG_ERROR(could not find lablgladecc2)
28 fi
29 AC_CHECK_PROG(HAVE_CAMLP4O, camlp4o, yes, no)
30 if test $HAVE_CAMLP4O = "yes"; then
31   CAMLP4O="camlp4o"
32 else
33   AC_MSG_ERROR(could not find camlp4o)
34 fi
35 FINDLIB_COMREQUIRES="\
36 pcre \
37 mysql \
38 helm-registry \
39 helm-extlib \
40 helm-hmysql \
41 helm-cic_notation \
42 helm-tactics \
43 helm-cic_disambiguation \
44 "
45 FINDLIB_CLEANREQUIRES="$FINDLIB_COMREQUIRES"
46 FINDLIB_DEPREQUIRES="$FINDLIB_COMREQUIRES"
47 FINDLIB_MAKEREQUIRES=" \
48 helm-registry \
49 helm-extlib \
50 "
51 FINDLIB_CREQUIRES=" \
52 $FINDLIB_COMREQUIRES \
53 helm-paramodulation \
54 "
55 FINDLIB_REQUIRES="\
56 $FINDLIB_CREQUIRES \
57 lablgtk2.glade \
58 lablgtkmathview \
59 lablgtksourceview \
60 helm-xmldiff \
61 helm-cic_transformations \
62 helm-tactics \
63 helm-cic_disambiguation \
64 helm-paramodulation \
65 "
66 for r in $FINDLIB_REQUIRES
67 do
68   AC_MSG_CHECKING(for $r ocaml library)
69   if OCAMLPATH=../ocaml/METAS $OCAMLFIND query $r &> /dev/null; then
70     AC_MSG_RESULT(yes)
71   else
72     AC_MSG_ERROR(could not find $r ocaml library)
73   fi
74 done
75
76 OCAMLFIND_COMMANDS=""
77 # AC_CHECK_PROG(HAVE_OCAMLC_OPT, ocamlc.opt, yes, no)
78 # if test $HAVE_OCAMLC_OPT = "yes"; then
79 #   if test "$OCAMLFIND_COMMANDS" = ""; then
80 #     OCAMLFIND_COMMANDS="ocamlc=ocamlc.opt"
81 #   else
82 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlc=ocamlc.opt"
83 #   fi
84 # fi
85 # AC_CHECK_PROG(HAVE_OCAMLOPT_OPT, ocamlopt.opt, yes, no)
86 # if test $HAVE_OCAMLOPT_OPT = "yes"; then
87 #   if test "$OCAMLFIND_COMMANDS" = ""; then
88 #     OCAMLFIND_COMMANDS="ocamlopt=ocamlopt.opt"
89 #   else
90 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlopt=ocamlopt.opt"
91 #   fi
92 # fi
93 if test "$OCAMLFIND_COMMANDS" != ""; then
94   OCAMLFIND="OCAMLFIND_COMMANDS='$OCAMLFIND_COMMANDS' $OCAMLFIND"
95 fi
96
97 AC_MSG_CHECKING(--enable-debug argument)
98 AC_ARG_ENABLE(debug,
99   [  --enable-debug     Turn on debugging],
100   [GIVEN="yes";
101    case "${enableval}" in
102    yes) DEBUG=true ;;
103    no)  DEBUG=false ;;
104    *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
105   esac],
106   [GIVEN="no"; DEBUG="$DEBUG_DEFAULT"])
107 MSG=$GIVEN
108 if test "$DEBUG" = "true"; then
109   MSG="$MSG, debugging enabled."
110 else
111   MSG="$MSG, debugging disabled."
112 fi
113 AC_MSG_RESULT($MSG)
114
115 AC_MSG_CHECKING(--with-runtime-dir argument)
116 AC_ARG_WITH(runtime-dir,
117   [ --with-runtime-dir  Runtime directory (current working directory if not given)],
118   [ RT_BASE_DIR="${withval}" ],
119   [ RT_BASE_DIR="$RT_BASE_DIR_DEFAULT" ])
120 AC_MSG_RESULT($RT_BASE_DIR)
121
122 AC_SUBST(CAMLP4O)
123 AC_SUBST(DEBUG)
124 AC_SUBST(TRANSFORMER_MODULE)
125 AC_SUBST(FINDLIB_REQUIRES)
126 AC_SUBST(FINDLIB_CREQUIRES)
127 AC_SUBST(FINDLIB_DEPREQUIRES)
128 AC_SUBST(FINDLIB_CLEANREQUIRES)
129 AC_SUBST(FINDLIB_MAKEREQUIRES)
130 AC_SUBST(HAVE_OCAMLOPT)
131 AC_SUBST(LABLGLADECC)
132 AC_SUBST(OCAMLFIND)
133 AC_SUBST(RT_BASE_DIR)
134 AC_SUBST(MATITA_VERSION)
135
136 AC_OUTPUT([
137   matita.conf.xml.sample
138   buildTimeConf.ml
139   Makefile
140   gtkmathview.matita.conf.xml
141 ])