X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=configure.in;h=b142ce7d17ddcaec3c2861c5630434bacc5d5623;hp=9ba97b81234a6d4344a3e8c043a07a4c4e72cb16;hb=f00cbbbdc1df5478ce74c4a13efafc42257e4cc1;hpb=4eb3b54bb2ca9af74f39f000d3d40dba99ded887 diff --git a/configure.in b/configure.in index 9ba97b8..b142ce7 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ -dnl Zebra, Index Data Aps, 1995-2004 -dnl $Id: configure.in,v 1.110 2004-12-13 20:51:27 adam Exp $ +dnl Zebra, Index Data ApS, 1995-2005 +dnl $Id: configure.in,v 1.121 2005-05-09 11:39:57 adam Exp $ dnl AC_INIT(include/idzebra/version.h) AM_INIT_AUTOMAKE(idzebra,1.4.0) @@ -14,14 +14,51 @@ AC_PROG_CPP AM_DISABLE_SHARED AM_PROG_LIBTOOL dnl +dnl ------ headers +AC_CHECK_HEADERS(sys/times.h unistd.h) +dnl +dnl ------ threads AC_ARG_ENABLE(threads, [ --disable-threads disable threads],[enable_threads=$enableval],[enable_threads=yes]) if test "$enable_threads" = "yes"; then yazflag=threads else yazflag="" fi -YAZ_INIT($yazflag,2.0.29) +dnl +dnl ------ YAZ +YAZ_INIT($yazflag,2.1.3) YAZ_DOC +dnl ----- libXSLT +AC_SUBST(XSLT_LIBS) +AC_SUBST(XSLT_CFLAGS) +xsltdir=yes +AC_ARG_WITH(xslt,[[ --with-xslt[=PREFIX] use libxslt in PREFIX]],xsltdir=$withval) +if test "$xsltdir" = "yes"; then + for d in /usr /usr/local; do + if test -x $d/bin/xslt-config; then + xsltdir=$d + fi + done +fi +if test "$xsltdir" != "no"; then + AC_MSG_CHECKING(for libXSLT) + + if test -x $xsltdir/bin/xslt-config; then + XSLT_VER=`$xsltdir/bin/xslt-config --version` + AC_MSG_RESULT($XSLT_VER) + 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 +fi dnl ------ Look for Tcl dnl See if user has specified location of tclConfig.sh; otherwise dnl see if tclConfig.sh exists in same prefix lcoation as tclsh; otherwise @@ -69,9 +106,6 @@ else AC_DEFINE(HAVE_TCL_H,0) fi dnl -dnl ------ times -AC_CHECK_HEADERS(sys/times.h) -dnl dnl ------ mkstemp AC_CHECK_FUNCS(mkstemp) dnl @@ -239,12 +273,13 @@ AC_DEFUN([ZEBRA_MODULE],[ AC_MSG_RESULT([static]) STATIC_MODULE_OBJ="${STATIC_MODULE_OBJ} \$(mod_${m}_la_OBJECTS)" STATIC_MODULE_LADD="${STATIC_MODULE_LADD} \$(mod_${m}_la_LADD)" - modcpp=`echo $1|tr a-z- A-Z_` + modcpp=`echo $1|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_` AC_DEFINE_UNQUOTED([IDZEBRA_STATIC_$modcpp]) elif test "$myen" = "no"; then AC_MSG_RESULT([disabled]) else - AC_MSG_RESULT([bad value. Assuming disabled]) + AC_MSG_RESULT([$myen]) + AC_MSG_ERROR([invalid --enable-mod-$1 value. Use on,off,static or shared]) fi ]) @@ -253,13 +288,20 @@ ZEBRA_MODULE(grs-sgml,static,[ --enable-mod-grs-sgml Simple SGML/XML filter]) ZEBRA_MODULE(grs-regx,shared,[ --enable-mod-grs-regx REGX/TCL filter]) ZEBRA_MODULE(grs-marc,shared,[ --enable-mod-grs-marc MARC filter]) ZEBRA_MODULE(grs-danbib,shared,[ --enable-mod-grs-danbib DanBib filter (DBC)]) -ZEBRA_MODULE(safari,shared,[ --enable-mod-safari Safari filter (DBC)]) +ZEBRA_MODULE(safari,shared, [ --enable-mod-safari Safari filter (DBC)]) if test "$ac_cv_header_expat_h" = "yes"; then def="shared" else def="no" fi ZEBRA_MODULE(grs-xml,[$def], [ --enable-mod-grs-xml XML filter (Expat based)]) +if test "$XSLT_VER"; then + def="shared" +else + def="no" +fi +ZEBRA_MODULE(xslt,[$def], [ --enable-mod-xslt XSLT filter]) +ZEBRA_MODULE(alvis,shared, [ --enable-mod-alvis ALVIS filter]) dnl ------ ANSI C Header files AC_STDC_HEADERS if test "$ac_cv_header_stdc" = "no"; then @@ -292,6 +334,7 @@ AC_OUTPUT([ doc/zebraphp.dsl doc/tkl.xsl test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile + test/xslt/Makefile test/xpath/Makefile test/rusmarc/Makefile test/cddb/Makefile test/malxml/Makefile test/mbox/Makefile @@ -301,8 +344,10 @@ AC_OUTPUT([ test/marcxml/Makefile test/charmap/Makefile test/codec/Makefile test/espec/Makefile examples/Makefile examples/gils/Makefile examples/zthes/Makefile + examples/marc21/Makefile idzebra.spec idzebra-config + Doxyfile ],[sed s%idzebra_echo_source=yes%idzebra_echo_source=no%g < idzebra-config > util/idzebra-config && chmod +x idzebra-config util/idzebra-config]) if test -z "$YAZLIB"; then echo "YAZ was not found. Use --with-yaz=DIR to specify location."