]> matita.cs.unibo.it Git - helm.git/blob - matita/configure.ac
xmldiff removed
[helm.git] / matita / configure.ac
1 AC_INIT(matita/matitaTypes.ml)
2
3 # Distribution settings
4 # (i.e. settings (automatically) manipulated before a release)
5 DEBUG_DEFAULT="true"
6 DEFAULT_DBHOST="mysql://mowgli.cs.unibo.it"
7 RT_BASE_DIR_DEFAULT="`pwd`/matita"
8 MATITA_VERSION="0.5.8"
9 DISTRIBUTED="no"  # "yes" for distributed tarballs
10 # End of distribution settings
11
12 SRCROOT=`pwd`
13 AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
14 if test $HAVE_OCAMLC = "no"; then
15   AC_MSG_ERROR(could not find ocamlc)
16 fi
17 AC_CHECK_PROG(HAVE_OCAMLOPT, ocamlopt, yes, no)
18 if test $HAVE_OCAMLOPT = "no"; then
19   AC_MSG_WARN(could not find ocamlopt: native code compilation disabled)
20 fi
21 AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no)
22 if test $HAVE_OCAMLFIND = "yes"; then
23   OCAMLFIND="ocamlfind"
24 else
25   AC_MSG_ERROR(could not find ocamlfind)
26 fi
27 AC_CHECK_PROG(HAVE_LABLGLADECC, lablgladecc2, yes, no)
28 if test $HAVE_LABLGLADECC = "yes"; then
29   LABLGLADECC="lablgladecc2"
30 else
31   AC_MSG_ERROR(could not find lablgladecc2)
32 fi
33 AC_CHECK_PROG(HAVE_CAMLP5O, camlp5o, yes, no)
34 if test $HAVE_CAMLP5O = "yes"; then
35   CAMLP5O="camlp5o"
36 else
37   AC_MSG_ERROR(could not find camlp5o)
38 fi
39
40 # look for METAS dir
41
42 LIBSPATH="`pwd`/components"
43 OCAMLPATH="$LIBSPATH/METAS"
44
45 # creating META.*
46
47 echo -n "creating METAs ... "
48 for f in $OCAMLPATH/meta.*.src; do
49   basename=`basename $f`
50   metaname=`echo $basename | sed 's/meta\.\(.*\)\.src/\1/'`
51   dirname=`echo $metaname | sed 's/^helm-//'`
52   metafile="$OCAMLPATH/META.$metaname"
53   cp $f $metafile
54   echo "directory=\"$LIBSPATH/$dirname\"" >> $metafile
55 done
56 echo "done"
57
58 # (libs) findlib requisites
59
60 FINDLIB_LIBSREQUIRES="\
61 expat \
62 gdome2 \
63 http \
64 lablgtk2 \
65 lablgtksourceview2.gtksourceview2 \
66 mysql \
67 netstring \
68 ulex08 \
69 zip \
70 "
71
72 # (Matita) findlib requisites
73
74 FINDLIB_COMREQUIRES="\
75 helm-disambiguation \
76 helm-grafite \
77 helm-grafite_engine \
78 helm-ng_disambiguation \
79 helm-ng_cic_content \
80 helm-grafite_parser \
81 helm-content_pres \
82 helm-hgdome \
83 helm-ng_paramodulation \
84 helm-ng_tactics \
85 "
86 FINDLIB_CREQUIRES=" \
87 $FINDLIB_COMREQUIRES \
88 "
89 FINDLIB_REQUIRES="\
90 $FINDLIB_CREQUIRES \
91 lablgtk2.glade \
92 lablgtksourceview2.gtksourceview2 \
93 "
94 for r in $FINDLIB_LIBSREQUIRES $FINDLIB_REQUIRES
95 do
96   AC_MSG_CHECKING(for $r ocaml library)
97   if OCAMLPATH=$OCAMLPATH $OCAMLFIND query $r &> /dev/null; then
98     AC_MSG_RESULT(yes)
99   else
100     AC_MSG_ERROR(could not find $r ocaml library)
101   fi
102 done
103
104 OCAMLFIND_COMMANDS=""
105 # AC_CHECK_PROG(HAVE_OCAMLC_OPT, ocamlc.opt, yes, no)
106 # if test $HAVE_OCAMLC_OPT = "yes"; then
107 #   if test "$OCAMLFIND_COMMANDS" = ""; then
108 #     OCAMLFIND_COMMANDS="ocamlc=ocamlc.opt"
109 #   else
110 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlc=ocamlc.opt"
111 #   fi
112 # fi
113 # AC_CHECK_PROG(HAVE_OCAMLOPT_OPT, ocamlopt.opt, yes, no)
114 # if test $HAVE_OCAMLOPT_OPT = "yes"; then
115 #   if test "$OCAMLFIND_COMMANDS" = ""; then
116 #     OCAMLFIND_COMMANDS="ocamlopt=ocamlopt.opt"
117 #   else
118 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlopt=ocamlopt.opt"
119 #   fi
120 # fi
121 if test "$OCAMLFIND_COMMANDS" != ""; then
122   OCAMLFIND="OCAMLFIND_COMMANDS='$OCAMLFIND_COMMANDS' $OCAMLFIND"
123 fi
124
125 AC_MSG_CHECKING(--enable-debug argument)
126 AC_ARG_ENABLE(debug,
127   [  --enable-debug       Turn on debugging],
128   [GIVEN="yes";
129    case "${enableval}" in
130    yes) DEBUG=true ;;
131    no)  DEBUG=false ;;
132    *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
133   esac],
134   [GIVEN="no"; DEBUG="$DEBUG_DEFAULT"])
135 MSG=$GIVEN
136 if test "$DEBUG" = "true"; then
137   MSG="$MSG, debugging enabled."
138 else
139   MSG="$MSG, debugging disabled."
140 fi
141 AC_MSG_RESULT($MSG)
142
143 AC_MSG_CHECKING(--enable-annot argument)
144 AC_ARG_ENABLE(annot,
145   [  --enable-annot       Turn on -dtypes compilation option],
146   [GIVEN="yes";
147    case "${enableval}" in
148    yes) ANNOT=true;;
149    no)  ANNOT=false;;
150    *) AC_MSG_ERROR(bad value ${enableval} for --enable-annot) ;;
151   esac],
152   [GIVEN="no"; ANNOT="false"])
153 MSG=$GIVEN
154 if test "$ANNOT" = "true"; then
155   MSG="$MSG, type annotation enabled."
156 else
157   MSG="$MSG, type annotation disabled."
158 fi
159 AC_MSG_RESULT($MSG)
160
161
162 AC_MSG_CHECKING(--with-runtime-dir argument)
163 AC_ARG_WITH(runtime-dir,
164   [  --with-runtime-dir      Runtime directory (current working directory if not given)],
165   [ RT_BASE_DIR="${withval}" ],
166   [ RT_BASE_DIR="$RT_BASE_DIR_DEFAULT" ])
167 MSG="$RT_BASE_DIR"
168 if test "yes" = "$RT_BASE_DIR"; then
169   MSG="
170 ** error:                                                                  **
171 **  empty --with-runtime-dir argument, please use --with-runtime-dir=value **"
172 fi
173 AC_MSG_RESULT($MSG)
174
175 AC_MSG_CHECKING(--with-dbhost argument)
176 AC_ARG_WITH(dbhost,
177   [  --with-dbhost           SQL database hostname],
178   [ DBHOST="${withval}" ],
179   [ DBHOST="$DEFAULT_DBHOST" ])
180 MSG="$DBHOST"
181 if test "yes" = "$DBHOST"; then
182   MSG="
183 ** error:                                                                  **
184 **  empty --with-dbhost argument, please use --with-dbhost=value           **"
185 fi
186 AC_MSG_RESULT($MSG)
187
188 AC_SUBST(CAMLP5O)
189 AC_SUBST(DBHOST)
190 AC_SUBST(DEBUG)
191 AC_SUBST(ANNOT)
192 AC_SUBST(DISTRIBUTED)
193 AC_SUBST(FINDLIB_CREQUIRES)
194 AC_SUBST(FINDLIB_REQUIRES)
195 AC_SUBST(HAVE_OCAMLOPT)
196 AC_SUBST(LABLGLADECC)
197 AC_SUBST(MATITA_VERSION)
198 AC_SUBST(OCAMLFIND)
199 AC_SUBST(OCAMLPATH)
200 AC_SUBST(RT_BASE_DIR)
201 AC_SUBST(SRCROOT)
202 AC_SUBST(TRANSFORMER_MODULE)
203
204 AC_OUTPUT([
205   components/extlib/componentsConf.ml
206   matita/matita.conf.xml
207   matita/buildTimeConf.ml
208   matita/help/C/version.txt
209   Makefile.defs
210 ])
211