2 AC_CONFIG_MACRO_DIR([m4])
3 AM_INIT_AUTOMAKE(barvinok, 0.33)
4 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
17 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
18 if test "$enable_shared" = yes; then
19 BV_LDFLAGS="-no-undefined"
28 AC_CHECK_HEADERS(getopt.h)
29 AC_CHECK_HEADERS(sys/times.h)
30 AC_CHECK_FUNCS(sigaction)
32 AC_MSG_CHECKING(whether to build shared libbarvinok)
33 AC_ARG_ENABLE(shared_barvinok,
34 AS_HELP_STRING([--enable-shared-barvinok],
35 [build shared barvinok library]),
36 [bv_cv_shared_barvinok=$enableval], [bv_cv_shared_barvinok="no"])
37 AC_MSG_RESULT($bv_cv_shared_barvinok)
38 if test "x$bv_cv_shared_barvinok" != "xyes" ; then
39 BV_LDFLAGS="$BV_LDFLAGS -static"
44 AC_ARG_WITH(default-prefix,
45 AS_HELP_STRING([--with-default-prefix=DIR],
46 [Default installation prefix of optional packages]))
47 if test "${with_default_prefix+set}" = set; then
48 if test "${with_libgmp+set}" != set -a \
49 -f "$with_default_prefix/include/gmp.h"; then
50 with_libgmp=$with_default_prefix
52 if test "${with_ntl+set}" != set -a \
53 -f "$with_default_prefix/include/NTL/ZZ.h"; then
54 with_ntl=$with_default_prefix
56 if test "${with_cddlib+set}" != set -a \
57 -f "$with_default_prefix/include/cddmp.h"; then
58 with_cddlib=$with_default_prefix
60 if test "${with_glpk+set}" != set -a \
61 -f "$with_default_prefix/include/glpk.h"; then
62 with_glpk=$with_default_prefix
64 if test "${with_topcom+set}" != set -a \
65 -f "$with_default_prefix/bin/points2triangs"; then
66 with_topcom=$with_default_prefix
70 dnl Check for GMP library
71 AC_MSG_CHECKING(whether to use GMP)
73 [ --with-libgmp DIR Location of the GMP Distribution],
74 gmp_package=$withval, gmp_package=yes)
75 if test "x$gmp_package" = "xno"; then
77 AC_MSG_ERROR(Need gmp)
80 if test "x$gmp_package" = "xyes"; then
81 bv_configure_args="$bv_configure_args --with-libgmp --with-gmp"
83 bv_configure_args="$bv_configure_args --with-libgmp=$gmp_package"
84 bv_configure_args="$bv_configure_args --with-gmp-prefix=$gmp_package"
86 if test ! -d "$GMP_DIR"; then
87 AC_ERROR(Directory given for GMP Distribution is not a directory)
89 CPPFLAGS="-I$GMP_DIR/include $CPPFLAGS"
90 LDFLAGS="-L$GMP_DIR/lib $LDFLAGS"
93 AC_CHECK_HEADER(gmp.h,
94 [AC_CHECK_LIB(gmp,main,
96 [poly_cv_gmpfatal="yes"])],
97 [poly_cv_gmpfatal="yes"])
98 if test "$poly_cv_gmpfatal" = "yes"; then
99 AC_MSG_ERROR([GMP not found])
102 AC_CHECK_DECL(mpz_divisible_p,[],[AC_LIBOBJ(mpz_divisible_p)],[#include <gmp.h>])
104 AX_SUBMODULE(polylib,build|bundled|system,bundled)
106 AC_SUBST(POLYLIB_CPPFLAGS)
107 AC_SUBST(POLYLIB_LDFLAGS)
108 AC_SUBST(POLYLIB_LIBS)
109 case "$with_polylib" in
111 bv_configure_args="$bv_configure_args --with-polylib-builddir=../polylib"
112 POLYLIB_CPPFLAGS="-I\$(top_builddir)/polylib/include -I\$(top_srcdir)/polylib/include"
115 with_polylib_builddir=`echo @abs_builddir@ | $with_polylib_builddir/config.status --file=-`
116 POLYLIB_CPPFLAGS="-I$polylib_srcdir/include -I$with_polylib_builddir/include"
117 POLYLIB_LIBS="$with_polylib_builddir/libpolylibgmp.la"
120 POLYLIB_LIBS="-lpolylibgmp"
121 if test "x$with_polylib_prefix" != "x"; then
122 POLYLIB_CPPFLAGS="-I$with_polylib_prefix/include"
123 POLYLIB_LDFLAGS="-L$with_polylib_prefix/lib"
125 SAVE_CPPFLAGS="$CPPFLAGS"
126 CPPFLAGS="$POLYLIB_CPPFLAGS $CPPFLAGS"
127 AC_CHECK_HEADERS([polylib/polylibgmp.h], [], [
128 AC_MSG_ERROR(Need PolyLib)
130 CPPFLAGS="$SAVE_CPPFLAGS"
133 AM_CONDITIONAL(BUNDLED_POLYLIB, test $with_polylib = bundled)
135 AX_SUBMODULE(isl,build|bundled|system,bundled)
139 AC_SUBST(ISL_BUILDDIR)
142 ISL_CFLAGS="-I\$(top_srcdir)/isl/include -I\$(top_builddir)/isl/include"
143 bv_configure_args="$bv_configure_args --with-isl-builddir=../isl"
144 PACKAGE_CFLAGS_ISL='-I${prefix}/include'
147 ISL_BUILDDIR=`echo @abs_builddir@ | $with_isl_builddir/config.status --file=-`
148 bv_configure_args="$bv_configure_args --with-isl-builddir=$ISL_BUILDDIR"
149 ISL_CFLAGS="-I$isl_srcdir/include -I$ISL_BUILDDIR/include"
150 PACKAGE_CFLAGS_ISL='-I${prefix}/include'
153 PKG_CHECK_MODULES([ISL], [isl])
154 PACKAGE_CFLAGS_ISL="$ISL_CFLAGS"
156 AM_CONDITIONAL(BUNDLED_ISL, test $with_isl = bundled)
157 AM_CONDITIONAL(BUILD_ISL, test $with_isl = build)
159 AX_SUBMODULE(isl-polylib,build|bundled|system,bundled)
161 AC_SUBST(ISL_POLYLIB_CFLAGS)
162 AC_SUBST(ISL_POLYLIB_LIBS)
163 case "$with_isl_polylib" in
165 ISL_POLYLIB_CFLAGS="-I\$(top_srcdir)/isl-polylib/include -I\$(top_builddir)/isl-polylib/include"
168 ISL_POLYLIB_CFLAGS="-I$isl_polylib_srcdir/include -I$with_isl_polylib_builddir/include"
169 ISL_POLYLIB_LIBS="$with_isl_polylib_builddir/libisl-polylib.la"
172 PKG_CHECK_MODULES([ISL_POLYLIB], [isl-polylib])
174 AM_CONDITIONAL(BUNDLED_ISL_POLYLIB, test $with_isl_polylib = bundled)
176 AC_MSG_CHECKING(if the fractional representation should be used)
177 AC_ARG_ENABLE(fractional, [AS_HELP_STRING([--disable-fractional],
178 [Don't use fractional representation])],
179 [bv_cv_fractional=$enableval], [bv_cv_fractional="yes"])
180 AC_ARG_ENABLE(modulo, [AS_HELP_STRING([--disable-modulo],
181 [Don't use fractional representation])],
182 [bv_cv_modulo=$enableval], [bv_cv_modulo="$bv_cv_fractional"])
183 AC_MSG_RESULT($bv_cv_modulo)
184 if test "x$bv_cv_modulo" != "xno" ; then
185 AC_DEFINE(USE_MODULO,[], [Use fractional representation])
188 AC_MSG_CHECKING(whether to use incremental algorithm)
189 AC_ARG_ENABLE(incremental,
190 [AS_HELP_STRING([--enable-incremental@<:@=bf|df@:>@],
191 [Enable incremental algorithm [bf]])],
192 [bv_cv_incremental=$enableval], [bv_cv_incremental="no"])
193 AC_MSG_RESULT($bv_cv_incremental)
194 case $bv_cv_incremental in
196 AC_DEFINE(USE_INCREMENTAL_BF,[],
197 [Use breadth-first incremental algorithm])
200 AC_DEFINE(USE_INCREMENTAL_DF,[],
201 [Use depth-first incremental algorithm])
206 [ --with-ntl=DIR DIR Location of NTL],
207 [ echo "Package ntl : $withval" && ntl_package=$withval],
210 if test "$ntl_package" = "no"; then
211 AC_MSG_ERROR(Need ntl)
214 AC_SUBST(NTL_CPPFLAGS)
215 AC_SUBST(NTL_LDFLAGS)
216 if test "$ntl_package" != "yes"; then
217 NTL_CPPFLAGS="-I$ntl_package/include"
218 NTL_LDFLAGS="-L$ntl_package/lib"
221 SAVE_CPPFLAGS="$CPPFLAGS"
222 SAVE_LDFLAGS="$LDFLAGS"
223 CPPFLAGS="$NTL_CPPFLAGS $CPPFLAGS"
224 LDFLAGS="$NTL_LDFLAGS $LDFLAGS"
231 ],:,AC_MSG_ERROR(ntl not compiled with gmp support))
234 AC_CHECK_LIB(ntl, main,[],[
235 AC_MSG_ERROR(Need ntl)
237 CPPFLAGS="$SAVE_CPPFLAGS"
238 LDFLAGS="$SAVE_LDFLAGS"
240 AC_SUBST(bv_cone_hilbert_basis)
241 AC_MSG_CHECKING(whether to compile zsolve)
243 [AS_HELP_STRING([--without-zsolve],[do not compile zsolve])],
244 [ with_zsolve=$withval], [ with_zsolve=yes ])
245 AC_MSG_RESULT($with_zsolve)
248 if test "$with_zsolve" != "no"; then
249 if test "$GCC" = "yes"; then
251 sed -e 's/.* \(@<:@0-9@:>@@<:@0-9@:>@*\)\.\(@<:@0-9@:>@@<:@0-9@:>@*\).*/\1 \2/' |
253 if test $major -gt 3; then
256 if test $major -eq 3 -a $minor -ge 4; then
262 if test "$use_zsolve" = false; then
263 AC_MSG_WARN(gcc 3.4 required to compile zsolve)
265 AC_DEFINE(USE_ZSOLVE,[],[use zsolve])
266 bv_cone_hilbert_basis="cone_hilbert_basis\$(EXEEXT)"
269 AM_CONDITIONAL(USE_ZSOLVE, test x$use_zsolve = xtrue)
271 AX_SUBMODULE(omega,no|bundled|system,no)
273 AC_SUBST(OMEGA_CPPFLAGS)
274 AC_SUBST(OMEGA_LDFLAGS)
276 AC_SUBST(OMEGA_CODEGEN_LIBS)
279 case "$with_omega" in
283 OMEGA_CPPFLAGS="-I\$(top_srcdir)/omega/omega_lib/include"
284 OMEGA_CPPFLAGS="$OMEGA_CPPFLAGS -I\$(top_srcdir)/omega/basic/include"
285 OMEGA_CPPFLAGS="$OMEGA_CPPFLAGS -I\$(top_srcdir)/omega/code_gen/include"
286 OMEGA_CPPFLAGS="$OMEGA_CPPFLAGS -I\$(top_srcdir)/omega/omega_calc/include"
289 if test "x$omega_package" != "xyes"; then
290 OMEGA_CPPFLAGS="-I$omega_package/include/omega"
291 OMEGA_LDFLAGS="-L$omega_package/lib"
293 for i in /usr/include /usr/local/include; do
294 if test -f $i/omega/omega.h; then
295 OMEGA_CPPFLAGS="-I$i/omega"
301 SAVE_CPPFLAGS="$CPPFLAGS"
302 SAVE_LDFLAGS="$LDFLAGS"
303 CPPFLAGS="$OMEGA_CPPFLAGS $CPPFLAGS"
304 LDFLAGS="$OMEGA_LDFLAGS $LDFLAGS"
305 AC_CHECK_HEADERS([omega.h],[
307 AC_CHECK_LIB(code_gen,main,[
308 OMEGA_CODEGEN_LIBS="-lcode_gen -lomega"
312 ],[AC_MSG_WARN(Omega not found)])
313 CPPFLAGS="$SAVE_CPPFLAGS"
314 LDFLAGS="$SAVE_LDFLAGS"
318 if test "$have_omega" = true; then
319 AC_DEFINE(HAVE_OMEGA,[],[use omega])
321 AM_CONDITIONAL(HAVE_OMEGA, test x$have_omega = xtrue)
322 AM_CONDITIONAL(BUNDLED_OMEGA, test $with_omega = bundled)
325 AC_MSG_CHECKING(whether to compile parker)
327 [AS_HELP_STRING([--without-zsolve],[do not compile zsolve])],
328 [ with_parker=$withval], [ with_parker=yes ])
329 AC_MSG_RESULT($with_parker)
331 if test "$with_parker" != "no"; then
332 AC_MSG_CHECKING(for mona)
334 [AS_HELP_STRING([--with-mona=DIR],[mona *source* directory])],
335 [], [AC_MSG_RESULT(not specified)])
337 if test "x$with_mona" != "x"; then
340 AC_MSG_RESULT($MONAPATH)
342 AC_DEFINE(USE_PARKER,[],[use parker])
345 if test "x$with_mona" = "x"; then
346 AC_MSG_WARN(mona source directory required to compile parker)
347 AC_MSG_WARN(http://www.brics.dk/mona/download)
350 AM_CONDITIONAL(USE_PARKER, test x$use_parker = xtrue)
352 AC_MSG_CHECKING(whether to use cddlib)
353 AC_ARG_WITH(cddlib, [AS_HELP_STRING([--with-cddlib=DIR],[DIR Location of cddlib])],
354 [ cddlib_package=$withval], [ cddlib_package=yes ])
355 AC_MSG_RESULT($cddlib_package)
358 if test "$cddlib_package" != "no"; then
359 if test "x$cddlib_package" != "xyes"; then
360 CPPFLAGS="-I$cddlib_package/include $CPPFLAGS"
361 LDFLAGS="-L$cddlib_package/lib $LDFLAGS"
371 AC_CHECK_LIB(cddgmp, main,[
373 LIBS="-lcddgmp $LIBS"
374 AC_DEFINE_UNQUOTED([SRCDIR], ["$srcdir"], [srcdir])
376 AC_RUN_IFELSE(AC_LANG_PROGRAM([[#define GMPRATIONAL
380 const char *filename = SRCDIR"/cdd94e-test";
384 dd_ErrorType err = dd_NoError;
386 dd_set_global_constants();
388 f = fopen(filename, "r");
389 M = dd_PolyFile2Matrix(f, &err);
390 lp = dd_Matrix2LP(M, &err);
391 dd_LPSolve(lp, dd_DualSimplex, &err);
392 return lp->LPS == dd_Inconsistent;
394 AC_DEFINE(HAVE_LIBCDDGMP, [], [Define to 1 if you have the `cddgmp' library (-lcddgmp).])
396 AC_MSG_WARN(please upgrade cddlib to 0.94e or later)
401 ],[have_cddlib=false])
404 AM_CONDITIONAL(HAVE_CDDLIB, test x$have_cddlib = xtrue)
408 AC_MSG_CHECKING(whether to use GLPK)
409 AC_ARG_WITH(glpk, [AS_HELP_STRING([--with-glpk=DIR],[DIR Location of GLPK])],
410 [ glpk_package=$withval], [ glpk_package=yes ])
411 AC_MSG_RESULT($glpk_package)
414 if test "$glpk_package" != "no"; then
415 if test "x$glpk_package" != "xyes"; then
416 CPPFLAGS="-I$glpk_package/include $CPPFLAGS"
417 LDFLAGS="-L$glpk_package/lib $LDFLAGS"
419 AC_CHECK_HEADERS([glpk.h],[
421 AC_CHECK_LIB(glpk, main,[],[have_glpk=false])
424 AM_CONDITIONAL(HAVE_GLPK, test x$have_glpk = xtrue)
426 AC_MSG_CHECKING(location of TOPCOM)
427 AC_ARG_WITH(topcom, [AS_HELP_STRING([--with-topcom=DIR],[Location of TOPCOM])],
428 [topcom_package=$withval], [topcom_package=unspecified])
429 AC_MSG_RESULT($topcom_package)
431 if test "$topcom_package" != no; then
433 if test "$topcom_package" != unspecified; then
434 topcom_path="$topcom_package/bin"
436 AC_PATH_PROG([POINTS2TRIANGS], [points2triangs], [], [$topcom_path])
437 if test -n "$POINTS2TRIANGS"; then
439 AC_DEFINE_UNQUOTED(POINTS2TRIANGS_PATH, ["$POINTS2TRIANGS"],
440 [Path of points2triangs])
443 AM_CONDITIONAL(HAVE_TOPCOM, test x$have_topcom = xtrue)
445 AX_SUBMODULE(cloog,no|build|system,no)
447 AC_SUBST(CLOOG_LDFLAGS)
448 AC_SUBST(CLOOG_CFLAGS)
450 CLOOG_CFLAGS="-DCLOOG_INT_GMP=1"
451 case "$with_cloog" in
453 with_cloog_builddir=`echo @abs_builddir@ | $with_cloog_builddir/config.status --file=-`
454 CLOOG_CFLAGS="$CLOOG_CFLAGS -I$cloog_srcdir/include -I$with_cloog_builddir/include"
455 CLOOG_LIBS="$with_cloog_builddir/libcloog-isl.la"
456 AC_DEFINE(HAVE_CLOOG,[],[use CLooG])
459 if test "x$with_cloog_prefix" != "x"; then
460 CLOOG_CFLAGS="$CLOOG_CFLAGS -I$with_cloog_prefix/include"
462 if test "x$with_cloog_exec_prefix" != "x"; then
463 CLOOG_LDFLAGS="-L$with_cloog_exec_prefix/lib"
465 CLOOG_LIBS="-lcloog-isl"
466 AC_DEFINE(HAVE_CLOOG,[],[use CLooG])
469 AC_SUBST(GIT_HEAD_ID)
471 AC_SUBST(GIT_HEAD_VERSION)
472 if test -f $srcdir/.git/HEAD; then
473 GIT_HEAD="$srcdir/.git/index"
474 GIT_REPO="$srcdir/.git"
475 GIT_HEAD_ID=`GIT_DIR=$GIT_REPO git describe`
476 elif test -f $srcdir/GIT_HEAD_ID; then
477 GIT_HEAD_ID=`cat $srcdir/GIT_HEAD_ID`
479 mysrcdir=`(cd $srcdir; pwd)`
480 head=`basename $mysrcdir | sed -e 's/.*-//'`
481 head2=`echo $head | sed -e 's/[^0-9a-f]//'`
482 head3=`echo $head2 | sed -e 's/........................................//'`
483 base=`basename $mysrcdir | sed -e 's/-.*//'`
484 if test "x$head3" = "x" -a "x$head" = "x$head2"; then
485 GIT_HEAD_ID="barvinok-$VERSION-$head
486 elif test "x$base" = "xbarvinok-$VERSION" -a "x$head" != "x"; then
487 GIT_HEAD_ID="barvinok-$VERSION-$head
489 GIT_HEAD_ID="UNKNOWN"
492 if test -z "$GIT_REPO" ; then
493 GIT_HEAD_VERSION="$GIT_HEAD_ID"
495 GIT_HEAD_VERSION="\`GIT_DIR=$GIT_REPO git describe\`"
497 echo '#define GIT_HEAD_ID "'$GIT_HEAD_ID'"' > version.h
504 suffix="normal", suffix="broken")
505 AC_CONFIG_COMMANDS([barvinok/set.h],
506 [cp $srcdir/barvinok/set.h.$suffix barvinok/set.h],
508 AC_CONFIG_COMMANDS([barvinok/NTL.h],
509 [cp $srcdir/barvinok/NTL.h.$suffix barvinok/NTL.h],
512 SAVE_CPPFLAGS="$CPPFLAGS"
513 CPPFLAGS="-I$srcdir $CPPFLAGS"
514 AC_TRY_COMPILE([#include "fdstream.h"],[],
515 [AC_DEFINE(USE_FDSTREAM,[],[use fdstream])
517 CPPFLAGS="$SAVE_CPPFLAGS"
519 AM_CONDITIONAL(USE_FDSTREAM, [test "$use_fdstream" = true])
521 PACKAGE_CFLAGS="$PACKAGE_CFLAGS_ISL"
522 PACKAGE_LIBS="-lbarvinok $EXTRA_PACKAGE_LIBS -lisl-polylib -lpolylibgmp -lisl"
523 AX_CREATE_PKGCONFIG_INFO
525 AC_CONFIG_HEADERS(config.h)
526 AC_CONFIG_FILES(Makefile zsolve/Makefile doc/Makefile)
527 AC_CONFIG_FILES(parker/Makefile)
528 if test $with_polylib = bundled; then
529 AC_CONFIG_SUBDIRS(polylib)
531 if test $with_isl = bundled; then
532 AC_CONFIG_SUBDIRS(isl)
534 if test $with_isl_polylib = bundled; then
535 AC_CONFIG_SUBDIRS(isl-polylib)
537 if test $with_omega = bundled; then
538 AC_CONFIG_SUBDIRS(omega)
540 AC_CONFIG_COMMANDS_POST([
541 dnl pass on arguments to subdir configures, but don't
542 dnl add them to config.status
543 ac_configure_args="$ac_configure_args $bv_configure_args"