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