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