1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(editex, [0.0.1])
3 AC_CONFIG_SRCDIR(src/TToken.hh)
4 AM_INIT_AUTOMAKE($AC_PACKAGE_NAME, $AC_PACKAGE_VERSION)
7 VERSION=$PACKAGE_VERSION
11 EDITEX_VERSION_INFO=`echo $VERSION | awk -F. '{ printf "%d:%d:%d", $1+$2, $3, $2 }'`
12 AC_SUBST(EDITEX_VERSION_INFO)
16 [ --enable-profile[=ARG] include profiling information [default=no]],
23 [ --enable-debug[=ARG] include debugging debug [default=yes]],
24 enable_debug=$enableval,
28 if test "x$enable_debug" = "xyes"; then
29 AC_DEFINE(ENABLE_DEBUG,,[Define to 1 if you want to enable validity checks while running])
33 AC_ARG_WITH(gmetadom-prefix,
34 [ --with-gmetadom-prefix=[PFX] Specify location of gmetadom],
35 GMETADOM_PREFIX=$withval
38 dnl AC_CONFIG_HEADERS([config.h])
39 AM_CONFIG_HEADER(config.h)
42 /* This file is part of EdiTeX, an editor of mathematical
43 * expressions based on TeX syntax.
45 * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
46 * 2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
48 * This library is free software; you can redistribute it and/or
49 * modify it under the terms of the GNU Lesser General Public
50 * License as published by the Free Software Foundation; either
51 * version 2.1 of the License, or (at your option) any later version.
53 * This library is distributed in the hope that it will be useful,
54 * but WITHOUT ANY WARRANTY; without even the implied warranty of
55 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
56 * Lesser General Public License for more details.
58 * You should have received a copy of the GNU Lesser General Public
59 * License along with this library; if not, write to the Free Software
60 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
62 * For more information, please visit the project's home page
63 * http://helm.cs.unibo.it/editex/
64 * or send an email to <lpadovan@cs.unibo.it>
81 AC_CHECK_HEADERS(hash_map)
82 AC_CHECK_HEADERS(ext/hash_map)
91 dnl PKG_CHECK_MODULES(GLIB2, glib-2.0)
92 dnl AC_SUBST(GLIB2_CFLAGS)
93 dnl AC_SUBST(GLIB2_LIBS)
95 GMETADOM_CONFIG="gmetadom-config"
96 GMETADOM_MIN_VERSION=0.1.0
97 AC_MSG_CHECKING([for GMetaDOM C++ library] >= $GMETADOM_MIN_VERSION)
98 if test "x$GMETADOM_PREFIX" != "x"
100 if ${GMETADOM_PREFIX}/bin/$GMETADOM_CONFIG --version > /dev/null 2>&1
102 GMETADOM_CONFIG=${GMETADOM_PREFIX}/bin/$GMETADOM_CONFIG
103 elif ! $GMETADOM_CONFIG --version > /dev/null 2>&1
105 AC_MSG_ERROR([Could not find gmetadom anywhere (see config.log for details).])
110 dnl test version and init our variables
112 vers=`$GMETADOM_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
113 minvers=`echo $GMETADOM_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
114 if test "$vers" -ge "$minvers"
116 GMETADOM_LIBS="`$GMETADOM_CONFIG --module=gdome_cpp_smart --libs`"
117 GMETADOM_CFLAGS="`$GMETADOM_CONFIG --module=gdome_cpp_smart --cflags`"
120 AC_MSG_ERROR([You need at least GMetaDOM (C++) $GMETADOM_MIN_VERSION for this version of $PACKAGE])
123 AC_SUBST(GMETADOM_CFLAGS)
124 AC_SUBST(GMETADOM_LIBS)
126 GDOMEXSLT_CONFIG="gdome_xslt_cpp_smart-config"
127 GDOMEXSLT_MIN_VERSION=0.0.4
128 AC_MSG_CHECKING([for gdome_xslt C++ library] >= $GDOMEXSLT_MIN_VERSION)
129 if test "x$GDOMEXSLT_PREFIX" != "x"
131 if ${GDOMEXSLT_PREFIX}/bin/$GDOMEXSLT_CONFIG --version > /dev/null 2>&1
133 GDOMEXSLT_CONFIG=${GDOMEXSLT_PREFIX}/bin/$GDOMEXSLT_CONFIG
134 elif ! $GDOMEXSLT_CONFIG --version > /dev/null 2>&1
136 AC_MSG_ERROR([Could not find gdome_xslt anywhere (see config.log for details).])
141 dnl test version and init our variables
143 vers=`$GDOMEXSLT_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
144 minvers=`echo $GDOMEXSLT_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
145 if test "$vers" -ge "$minvers"
147 GDOMEXSLT_LIBS="`$GDOMEXSLT_CONFIG --libs`"
148 GDOMEXSLT_CFLAGS="`$GDOMEXSLT_CONFIG --cflags`"
151 AC_MSG_ERROR([You need at least gdome_xslt (C++) $GDOMEXSLT_MIN_VERSION for this version of $PACKAGE])
154 AC_SUBST(GDOMEXSLT_CFLAGS)
155 AC_SUBST(GDOMEXSLT_LIBS)
157 GTKMATHVIEW_CONFIG="gtkmathview-config"
158 GTKMATHVIEW_MIN_VERSION=0.4.0
159 AC_MSG_CHECKING([for gtkmathview library] >= $GTKMATHVIEW_MIN_VERSION)
160 if test "x$GTKMATHVIEW_PREFIX" != "x"
162 if ${GTKMATHVIEW_PREFIX}/bin/$GTKMATHVIEW_CONFIG --version > /dev/null 2>&1
164 GTKMATHVIEW_CONFIG=${GTKMATHVIEW_PREFIX}/bin/$GTKMATHVIEW_CONFIG
165 elif ! $GTKMATHVIEW_CONFIG --version > /dev/null 2>&1
167 AC_MSG_ERROR([Could not find gtkmathview anywhere (see config.log for details).])
172 dnl test version and init our variables
174 vers=`$GTKMATHVIEW_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
175 minvers=`echo $GTKMATHVIEW_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
176 if test "$vers" -ge "$minvers"
178 GTKMATHVIEW_LIBS="`$GTKMATHVIEW_CONFIG --libs`"
179 GTKMATHVIEW_CFLAGS="`$GTKMATHVIEW_CONFIG --cflags`"
182 AC_MSG_ERROR([You need at least gtkmathview $GTKMATHVIEW_MIN_VERSION for this version of $PACKAGE])
185 AC_SUBST(GTKMATHVIEW_CFLAGS)
186 AC_SUBST(GTKMATHVIEW_LIBS)
188 AC_CHECK_PROG(HAVE_OCAMLC, ocamlc, yes, no)
189 if test $HAVE_OCAMLC = "no"; then
190 AC_MSG_ERROR([could not find ocamlc in PATH, please make sure ocaml is installed])
193 OCAMLSTDLIBDIR="`ocamlc -where`"
194 OCAMLSTUBDIR="`ocamlc -where`/stublibs"
196 AC_SUBST(OCAMLSTDLIBDIR)
197 AC_SUBST(OCAMLSTUBDIR)
200 AC_CHECK_PROG(HAVE_OCAMLOPT, ocamlopt, yes, no)
201 if test $HAVE_OCAMLOPT = "no"; then
202 AC_MSG_WARN([ocaml native libraries won't be compiled since ocamlopt was not found])
207 AM_CONDITIONAL(HAVE_OCAMLOPT_COND, test x$HAVE_OCAMLOPT = xyes)
209 AC_CHECK_PROG(HAVE_OCAMLFIND, ocamlfind, yes, no)
210 if test $HAVE_OCAMLFIND = "no"; then
211 AC_MSG_ERROR([could not find ocamlfind in PATH, please make sure findlib is installed])
217 AC_CHECK_PROG(HAVE_OCAMLDEP, ocamldep, yes, no)
218 if test $HAVE_OCAMLDEP = "yes"; then
223 AC_CHECK_PROG(HAVE_OCAMLMKLIB, ocamlmklib, yes, no)
224 if test $HAVE_OCAMLMKLIB = "no"; then
225 AC_MSG_ERROR([could not find ocamlmklib in PATH, please make sure ocamlmklib is installed])
227 OCAMLMKLIB=ocamlmklib
230 AM_CONDITIONAL(HAVE_SHAREDLIBS_COND, test x$enable_shared = xyes)
232 AC_MSG_CHECKING(for gdome2 ocaml binding)
233 ocamlfind query gdome2 ||
234 AC_MSG_ERROR(gdome2 not installed (according to findlib))
235 MLGDOME_CFLAGS="`$OCAMLFIND query -i-format gdome2`"
236 AC_SUBST(MLGDOME_CFLAGS)
238 AC_MSG_CHECKING(for the ocaml library dir)
239 OCAML_LIB_DIR=`ocamlc -where`
240 AC_MSG_RESULT($OCAML_LIB_DIR)
242 AC_CHECK_FILE(/usr/include/caml/mlvalues.h,
243 OCAML_INCLUDE_DIR=/usr/include/caml,
244 OCAML_INCLUDE_DIR=$OCAML_LIB_DIR/caml
247 AC_SUBST(OCAML_INCLUDE_DIR)