]> matita.cs.unibo.it Git - helm.git/blob - matitaB/configure.ac
update in basic_2
[helm.git] / matitaB / 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 netcgi2 \
68 nethttpd \
69 netstring \
70 ulex08 \
71 zip \
72 "
73
74 # (Matita) findlib requisites
75
76 FINDLIB_COMREQUIRES="\
77 helm-disambiguation \
78 helm-grafite \
79 helm-grafite_engine \
80 helm-ng_disambiguation \
81 helm-ng_cic_content \
82 helm-grafite_parser \
83 helm-content_pres \
84 helm-ng_paramodulation \
85 helm-ng_tactics \
86 "
87 FINDLIB_CREQUIRES=" \
88 $FINDLIB_COMREQUIRES \
89 "
90 FINDLIB_REQUIRES="\
91 $FINDLIB_CREQUIRES \
92 lablgtk2.glade \
93 lablgtksourceview2.gtksourceview2 \
94 "
95 FINDLIB_WREQUIRES="\
96 $FINDLIB_CREQUIRES \
97 netcgi2 \
98 nethttpd \
99 uuidm \
100 cryptokit \
101 "
102 for r in $FINDLIB_LIBSREQUIRES $FINDLIB_REQUIRES $FINDLIB_WREQUIRES
103 do
104   AC_MSG_CHECKING(for $r ocaml library)
105   if OCAMLPATH=$OCAMLPATH $OCAMLFIND query $r &> /dev/null; then
106     AC_MSG_RESULT(yes)
107   else
108     AC_MSG_ERROR(could not find $r ocaml library)
109   fi
110 done
111
112 OCAMLFIND_COMMANDS=""
113 # AC_CHECK_PROG(HAVE_OCAMLC_OPT, ocamlc.opt, yes, no)
114 # if test $HAVE_OCAMLC_OPT = "yes"; then
115 #   if test "$OCAMLFIND_COMMANDS" = ""; then
116 #     OCAMLFIND_COMMANDS="ocamlc=ocamlc.opt"
117 #   else
118 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlc=ocamlc.opt"
119 #   fi
120 # fi
121 # AC_CHECK_PROG(HAVE_OCAMLOPT_OPT, ocamlopt.opt, yes, no)
122 # if test $HAVE_OCAMLOPT_OPT = "yes"; then
123 #   if test "$OCAMLFIND_COMMANDS" = ""; then
124 #     OCAMLFIND_COMMANDS="ocamlopt=ocamlopt.opt"
125 #   else
126 #     OCAMLFIND_COMMANDS="$OCAMLFIND_COMMANDS ocamlopt=ocamlopt.opt"
127 #   fi
128 # fi
129 if test "$OCAMLFIND_COMMANDS" != ""; then
130   OCAMLFIND="OCAMLFIND_COMMANDS='$OCAMLFIND_COMMANDS' $OCAMLFIND"
131 fi
132
133 AC_MSG_CHECKING(--enable-debug argument)
134 AC_ARG_ENABLE(debug,
135   [  --enable-debug       Turn on debugging],
136   [GIVEN="yes";
137    case "${enableval}" in
138    yes) DEBUG=true ;;
139    no)  DEBUG=false ;;
140    *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
141   esac],
142   [GIVEN="no"; DEBUG="$DEBUG_DEFAULT"])
143 MSG=$GIVEN
144 if test "$DEBUG" = "true"; then
145   MSG="$MSG, debugging enabled."
146 else
147   MSG="$MSG, debugging disabled."
148 fi
149 AC_MSG_RESULT($MSG)
150
151 AC_MSG_CHECKING(--enable-annot argument)
152 AC_ARG_ENABLE(annot,
153   [  --enable-annot       Turn on -dtypes compilation option],
154   [GIVEN="yes";
155    case "${enableval}" in
156    yes) ANNOT=true;;
157    no)  ANNOT=false;;
158    *) AC_MSG_ERROR(bad value ${enableval} for --enable-annot) ;;
159   esac],
160   [GIVEN="no"; ANNOT="false"])
161 MSG=$GIVEN
162 if test "$ANNOT" = "true"; then
163   MSG="$MSG, type annotation enabled."
164 else
165   MSG="$MSG, type annotation disabled."
166 fi
167 AC_MSG_RESULT($MSG)
168
169
170 AC_MSG_CHECKING(--with-runtime-dir argument)
171 AC_ARG_WITH(runtime-dir,
172   [  --with-runtime-dir      Runtime directory (current working directory if not given)],
173   [ RT_BASE_DIR="${withval}" ],
174   [ RT_BASE_DIR="$RT_BASE_DIR_DEFAULT" ])
175 MSG="$RT_BASE_DIR"
176 if test "yes" = "$RT_BASE_DIR"; then
177   MSG="
178 ** error:                                                                  **
179 **  empty --with-runtime-dir argument, please use --with-runtime-dir=value **"
180 fi
181 AC_MSG_RESULT($MSG)
182
183 AC_MSG_CHECKING(--with-dbhost argument)
184 AC_ARG_WITH(dbhost,
185   [  --with-dbhost           SQL database hostname],
186   [ DBHOST="${withval}" ],
187   [ DBHOST="$DEFAULT_DBHOST" ])
188 MSG="$DBHOST"
189 if test "yes" = "$DBHOST"; then
190   MSG="
191 ** error:                                                                  **
192 **  empty --with-dbhost argument, please use --with-dbhost=value           **"
193 fi
194 AC_MSG_RESULT($MSG)
195
196 AC_SUBST(CAMLP5O)
197 AC_SUBST(DBHOST)
198 AC_SUBST(DEBUG)
199 AC_SUBST(ANNOT)
200 AC_SUBST(DISTRIBUTED)
201 AC_SUBST(FINDLIB_CREQUIRES)
202 AC_SUBST(FINDLIB_REQUIRES)
203 AC_SUBST(FINDLIB_WREQUIRES)
204 AC_SUBST(HAVE_OCAMLOPT)
205 AC_SUBST(LABLGLADECC)
206 AC_SUBST(MATITA_VERSION)
207 AC_SUBST(OCAMLFIND)
208 AC_SUBST(OCAMLPATH)
209 AC_SUBST(RT_BASE_DIR)
210 AC_SUBST(SRCROOT)
211 AC_SUBST(TRANSFORMER_MODULE)
212
213 AC_OUTPUT([
214   components/extlib/componentsConf.ml
215   matita/matita.conf.xml
216   matita/buildTimeConf.ml
217   matita/help/C/version.txt
218   Makefile.defs
219 ])
220