X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=configure.in;h=980e063856e763acb33ae3e6285e2fe1bdaecfb9;hp=eb9b51394204e13a1a961791ae156277d7233878;hb=6c1cf0fc7d20c78779899d0ba0d3f31f065e2e46;hpb=5eab6e77e9795fad2ffc3cd6f00163f2a9573da9 diff --git a/configure.in b/configure.in index eb9b513..980e063 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Zebra, Index Data ApS, 1995-2005 -dnl $Id: configure.in,v 1.120 2005-04-28 18:56:13 adam Exp $ +dnl $Id: configure.in,v 1.127 2005-06-14 20:28:05 adam Exp $ dnl AC_INIT(include/idzebra/version.h) AM_INIT_AUTOMAKE(idzebra,1.4.0) @@ -15,7 +15,12 @@ AM_DISABLE_SHARED AM_PROG_LIBTOOL dnl dnl ------ headers -AC_CHECK_HEADERS(sys/times.h unistd.h) +AC_CHECK_HEADERS(sys/times.h sys/time.h unistd.h sys/resource.h) +dnl ------ crypt +AC_CHECK_LIB(crypt, crypt) +if test "$ac_cv_lib_crypt_crypt" = "yes"; then + AC_CHECK_HEADERS(crypt.h) +fi dnl dnl ------ threads AC_ARG_ENABLE(threads, [ --disable-threads disable threads],[enable_threads=$enableval],[enable_threads=yes]) @@ -26,7 +31,7 @@ else fi dnl dnl ------ YAZ -YAZ_INIT($yazflag,2.1.3) +YAZ_INIT($yazflag,2.1.9) YAZ_DOC dnl ----- libXSLT AC_SUBST(XSLT_LIBS) @@ -42,12 +47,19 @@ if test "$xsltdir" = "yes"; then fi if test "$xsltdir" != "no"; then AC_MSG_CHECKING(for libXSLT) + if test -x $xsltdir/bin/xslt-config; then - XSLT_LIBS=`$xsltdir/bin/xslt-config --libs` - XSLT_CFLAGS=`$xsltdir/bin/xslt-config --cflags` XSLT_VER=`$xsltdir/bin/xslt-config --version` AC_MSG_RESULT($XSLT_VER) - AC_DEFINE(HAVE_XSLT) + have_xslt_version=`echo "$XSLT_VER" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'` + if test $have_xslt_version -lt 1001012; then + AC_MSG_WARN([libXSLT too old. Use 1.1.12 or later.]) + XSLT_VER="" + else + XSLT_LIBS=`$xsltdir/bin/xslt-config --libs` + XSLT_CFLAGS=`$xsltdir/bin/xslt-config --cflags` + AC_DEFINE(HAVE_XSLT) + fi else AC_MSG_RESULT(Not found) fi @@ -336,6 +348,7 @@ AC_OUTPUT([ test/dmoz/Makefile test/sort/Makefile test/zsh/Makefile test/marcxml/Makefile test/charmap/Makefile test/codec/Makefile test/espec/Makefile + test/filters/Makefile examples/Makefile examples/gils/Makefile examples/zthes/Makefile examples/marc21/Makefile idzebra.spec