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