]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/configure.ac
enable building with ocaml 3.08.x
[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 helm-cic_disambiguation \
37 helm-grafite \
38 helm-grafite_engine \
39 helm-grafite_parser \
40 helm-hgdome \
41 helm-tactics \
42 "
43 FINDLIB_CLEANREQUIRES="$FINDLIB_COMREQUIRES"
44 FINDLIB_DEPREQUIRES="$FINDLIB_COMREQUIRES"
45 FINDLIB_MAKEREQUIRES=" \
46 helm-registry \
47 helm-extlib \
48 "
49 FINDLIB_CREQUIRES=" \
50 $FINDLIB_COMREQUIRES \
51 helm-paramodulation \
52 "
53 FINDLIB_REQUIRES="\
54 $FINDLIB_CREQUIRES \
55 lablgtk2.glade \
56 lablgtkmathview \
57 helm-xmldiff \
58 helm-paramodulation \
59 "
60 for r in $FINDLIB_REQUIRES
61 do
62   AC_MSG_CHECKING(for $r ocaml library)
63   if OCAMLPATH=../ocaml/METAS $OCAMLFIND query $r &> /dev/null; then
64     AC_MSG_RESULT(yes)
65   else
66     AC_MSG_ERROR(could not find $r ocaml library)
67   fi
68 done
69
70 OCAMLFIND_COMMANDS=""
71 # AC_CHECK_PROG(HAVE_OCAMLC_OPT, ocamlc.opt, yes, no)
72 # if test $HAVE_OCAMLC_OPT = "yes"; then
73 #   if test "$OCAMLFIND_COMMANDS" = ""; then
74 #     OCAMLFIND_COMMANDS="ocamlc=ocamlc.opt"
75 #   else
76 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlc=ocamlc.opt"
77 #   fi
78 # fi
79 # AC_CHECK_PROG(HAVE_OCAMLOPT_OPT, ocamlopt.opt, yes, no)
80 # if test $HAVE_OCAMLOPT_OPT = "yes"; then
81 #   if test "$OCAMLFIND_COMMANDS" = ""; then
82 #     OCAMLFIND_COMMANDS="ocamlopt=ocamlopt.opt"
83 #   else
84 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlopt=ocamlopt.opt"
85 #   fi
86 # fi
87 if test "$OCAMLFIND_COMMANDS" != ""; then
88   OCAMLFIND="OCAMLFIND_COMMANDS='$OCAMLFIND_COMMANDS' $OCAMLFIND"
89 fi
90
91 AC_MSG_CHECKING(--enable-debug argument)
92 AC_ARG_ENABLE(debug,
93   [  --enable-debug     Turn on debugging],
94   [GIVEN="yes";
95    case "${enableval}" in
96    yes) DEBUG=true ;;
97    no)  DEBUG=false ;;
98    *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
99   esac],
100   [GIVEN="no"; DEBUG="$DEBUG_DEFAULT"])
101 MSG=$GIVEN
102 if test "$DEBUG" = "true"; then
103   MSG="$MSG, debugging enabled."
104 else
105   MSG="$MSG, debugging disabled."
106 fi
107 AC_MSG_RESULT($MSG)
108
109 AC_MSG_CHECKING(--with-runtime-dir argument)
110 AC_ARG_WITH(runtime-dir,
111   [ --with-runtime-dir  Runtime directory (current working directory if not given)],
112   [ RT_BASE_DIR="${withval}" ],
113   [ RT_BASE_DIR="$RT_BASE_DIR_DEFAULT" ])
114 AC_MSG_RESULT($RT_BASE_DIR)
115
116 AC_SUBST(CAMLP4O)
117 AC_SUBST(DEBUG)
118 AC_SUBST(TRANSFORMER_MODULE)
119 AC_SUBST(FINDLIB_REQUIRES)
120 AC_SUBST(FINDLIB_CREQUIRES)
121 AC_SUBST(FINDLIB_DEPREQUIRES)
122 AC_SUBST(FINDLIB_CLEANREQUIRES)
123 AC_SUBST(FINDLIB_MAKEREQUIRES)
124 AC_SUBST(HAVE_OCAMLOPT)
125 AC_SUBST(LABLGLADECC)
126 AC_SUBST(OCAMLFIND)
127 AC_SUBST(RT_BASE_DIR)
128 AC_SUBST(MATITA_VERSION)
129
130 AC_OUTPUT([
131   matita.conf.xml.sample
132   buildTimeConf.ml
133   Makefile
134   gtkmathview.matita.conf.xml
135 ])