X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=configure.in;h=980e063856e763acb33ae3e6285e2fe1bdaecfb9;hp=f70b4929f3c8e605a1744549a7aa38d8b08e8b64;hb=6c1cf0fc7d20c78779899d0ba0d3f31f065e2e46;hpb=12ed44cad4b6c14fd21384e26c077349af702fcb diff --git a/configure.in b/configure.in index f70b492..980e063 100644 --- a/configure.in +++ b/configure.in @@ -1,46 +1,69 @@ -dnl Zebra, Index Data Aps, 1994-2000 -dnl $Id: configure.in,v 1.28 2001-02-28 09:01:41 adam Exp $ +dnl Zebra, Index Data ApS, 1995-2005 +dnl $Id: configure.in,v 1.127 2005-06-14 20:28:05 adam Exp $ dnl -AC_INIT(include/zebraver.h) -AC_MSG_CHECKING(for package) -if test -r ${srcdir}/LICENSE.zmbol; then - AC_MSG_RESULT([Z'mbol]) - PROGPREFIX=zmbol - AC_DEFINE(ZMBOL,1) - AM_INIT_AUTOMAKE(zmbol,1.1) -else - AC_MSG_RESULT([Zebra]) - PROGPREFIX=zebra - AC_DEFINE(ZMBOL,0) - AM_INIT_AUTOMAKE(zebra,1.1) - if test ! -r ${srcdir}/isam; then - mkdir ${srcdir}/isam - fi - touch ${srcdir}/isam/Makefile.in - if test ! -r ${srcdir}/isamc; then - mkdir ${srcdir}/isamc - fi - touch ${srcdir}/isamc/Makefile.in - if test ! -r ${srcdir}/isamb; then - mkdir ${srcdir}/isamb - fi - touch ${srcdir}/isamb/Makefile.in -fi -AM_CONDITIONAL(ISZMBOL,test $PACKAGE = zmbol) +AC_INIT(include/idzebra/version.h) +AM_INIT_AUTOMAKE(idzebra,1.4.0) dnl ------ Substitutions -AC_SUBST(DEFS) AC_SUBST(TCL_INCLUDE) AC_SUBST(TCL_LIB) -AC_SUBST(PROGPREFIX) +AC_SUBST(READLINE_LIBS) dnl dnl ------ Checking programs AC_PROG_CC AC_PROG_CPP -AC_PROG_INSTALL -AC_PROG_RANLIB - -YAZ_INIT(threads) +AM_DISABLE_SHARED +AM_PROG_LIBTOOL +dnl +dnl ------ headers +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]) +if test "$enable_threads" = "yes"; then + yazflag=threads +else + yazflag="" +fi dnl +dnl ------ YAZ +YAZ_INIT($yazflag,2.1.9) +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 @@ -54,6 +77,14 @@ if test "x$tclconfig" = xNONE; then AC_PREFIX_PROGRAM(tclsh) tclconfig=${prefix}/lib prefix=${saveprefix} + if test ! -r ${tclconfig}/tclConfig.sh; then + # Not found, try search for Tcl on Debian systems. + for d in /usr/lib/tcl*; do + if test -f $d/tclConfig.sh; then + tclconfig=$d + fi + done + fi fi AC_MSG_CHECKING(for Tcl) if test -r ${tclconfig}/tclConfig.sh; then @@ -61,10 +92,14 @@ if test -r ${tclconfig}/tclConfig.sh; then if test -r ${tclconfig}/../generic/tcl.h; then TCL_INCLUDE=-I${tclconfig}/../generic TCL_LIB="$TCL_BUILD_LIB_SPEC $TCL_LIBS" - else + elif test -d ${TCL_PREFIX}/include/tcl${TCL_VERSION}; then + TCL_INCLUDE=-I${TCL_PREFIX}/include/tcl${TCL_VERSION} + TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS" + else TCL_INCLUDE=-I${TCL_PREFIX}/include TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS" fi + TCL_LIB=`echo $TCL_LIB|sed 's%-L/usr/lib%%g'` SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS SHLIB_LD=$TCL_SHLIB_LD SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX @@ -76,8 +111,69 @@ else AC_DEFINE(HAVE_TCL_H,0) fi dnl -dnl ------ times -AC_CHECK_HEADERS(sys/times.h pthread.h) +dnl ------ mkstemp +AC_CHECK_FUNCS(mkstemp) +dnl +dnl ------ GNU Readline +READLINE_SHARED_LIBADD="" +AC_CHECK_LIB(ncurses, tgetent, [READLINE_SHARED_LIBADD="-lncurses"], + AC_CHECK_LIB(termcap, tgetent, [READLINE_SHARED_LIBADD="-ltermcap"]) +) +READLINE_LIBS="" +AC_CHECK_LIB(readline, readline, [READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD) +AC_CHECK_LIB(history, add_history, [READLINE_LIBS="$READLINE_LIBS -lhistory"]) +if test "$ac_cv_lib_readline_readline" = "yes"; then + AC_CHECK_HEADERS(readline/readline.h readline/history.h) + xLIBS=$LIBS + LIBS="$LIBS $READLINE_LIBS" + AC_TRY_LINK([ + #include + #include + ],[ + rl_attempted_completion_over = 0; + ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER)) + AC_TRY_LINK([ + #include + #include + ],[ + rl_completion_matches (0, 0); + ],AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES)) + LIBS=$xLIBS +fi +dnl +dnl ------ iconv +AC_ARG_WITH(iconv, [ --with-iconv[=DIR] iconv library in DIR]) +if test "$with_iconv" != "no"; then + AC_MSG_CHECKING(for iconv) + oldLIBS="$LIBS" + oldCPPFLAGS="${CPPFLAGS}" + if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then + LIBS="$LIBS -L${with_iconv}/lib" + CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include" + fi + AC_TRY_LINK([ + #include + ],[ + iconv_t t = iconv_open("", ""); + ],[ + AC_DEFINE(HAVE_ICONV_H) + AC_MSG_RESULT(yes) + ],[ + LIBS="$LIBS -liconv" + AC_TRY_LINK([ + #include + ],[ + iconv_t t = iconv_open("", ""); + ],[ + AC_DEFINE(HAVE_ICONV_H) + AC_MSG_RESULT(yes) + ],[ + LIBS="$oldLIBS" + CPPFLAGS="$oldCPPFLAGS" + AC_MSG_RESULT(no) + ]) + ]) +fi dnl dnl ------- BZIP2 AC_CHECK_LIB(bz2,bzCompressInit) @@ -89,6 +185,33 @@ else AC_CHECK_HEADERS(bzlib.h) fi fi +dnl +dnl ------ -lm +AC_CHECK_LIB(m,sqrt) +dnl ------ -ldl +AC_CHECK_LIB(dl,dlopen) +dnl +dnl ------ EXPAT +expat=yes +AC_SUBST(EXPAT_LIBS) +AC_ARG_WITH(expat, [ --with-expat[=DIR] EXPAT library in DIR],[expat=$withval]) +if test "$expat" != "no"; then + xLIBS="$LIBS"; + xCFLAGS="$CFLAGS"; + if test "$expat" != "yes"; then + EXPAT_CFLAGS="-I$expat/include" + EXPAT_LIBS="-L$expat/lib" + CFLAGS="$EXPAT_CFLAGS $CFLAGS" + LIBS="$EXPAT_LIBS $LIBS" + fi + AC_CHECK_LIB(expat,XML_ParserCreate,[EXPAT_LIBS="$EXPAT_LIBS -lexpat"]) + if test "$ac_cv_lib_expat_XML_ParserCreate" = "yes"; then + AC_CHECK_HEADERS(expat.h) + fi + LIBS="$xLIBS" + CFLAGS="$xCFLAGS" +fi +dnl dnl ------- 64 bit files AC_MSG_CHECKING(for LFS) AC_TRY_RUN([#define _FILE_OFFSET_BITS 64 @@ -129,12 +252,70 @@ if test "$bits" = "64"; then else AC_MSG_RESULT(no) fi -dnl +dnl ------ Modules +AC_SUBST(SHARED_MODULE_LA) +SHARED_MODULE_LA="" +AC_SUBST(STATIC_MODULE_OBJ) +STATIC_MODULE_OBJ="" +AC_SUBST(STATIC_MODULE_LADD) +STATIC_MODULE_LADD="" +AC_DEFUN([ZEBRA_MODULE],[ + AC_ARG_ENABLE(mod-$1,[$3],[myen=$enableval],[myen=$2]) + AC_MSG_CHECKING([for module $1]) + if test "$myen" = "yes"; then + myen="shared" + fi + if test "$enable_shared" != "yes"; then + if test "$myen" = "shared"; then + myen="static" + fi + fi + m=`echo $1|tr .- __` + if test "$myen" = "shared"; then + AC_MSG_RESULT([shared]) + SHARED_MODULE_LA="${SHARED_MODULE_LA} mod-$1.la" + elif test "$myen" = "static" -o "$myen" = "yes"; then + 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 abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_` + AC_DEFINE_UNQUOTED([IDZEBRA_STATIC_$modcpp]) + elif test "$myen" = "no"; then + AC_MSG_RESULT([disabled]) + else + AC_MSG_RESULT([$myen]) + AC_MSG_ERROR([invalid --enable-mod-$1 value. Use on,off,static or shared]) + fi +]) + +ZEBRA_MODULE(text,static, [ --enable-mod-text Text filter]) +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)]) +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 AC_MSG_WARN(Your system doesn't seem to support ANSI C) fi +AC_SUBST(IDZEBRA_SRC_ROOT) +AC_SUBST(IDZEBRA_BUILD_ROOT) +IDZEBRA_SRC_ROOT=`cd ${srcdir}; pwd` +IDZEBRA_BUILD_ROOT=`pwd` dnl ------ Create Makefiles AC_OUTPUT([ Makefile @@ -145,12 +326,37 @@ AC_OUTPUT([ isamb/Makefile isams/Makefile isamc/Makefile - isam/Makefile rset/Makefile + data1/Makefile recctrl/Makefile index/Makefile - include/Makefile + include/Makefile include/idzebra/Makefile tab/Makefile doc/Makefile - test/Makefile test/gils/Makefile test/usmarc/Makefile -]) + doc/zebra.xml + doc/zebrahtml.dsl + doc/zebraprint.dsl + 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 + test/config/Makefile test/sort2/Makefile + test/xelm/Makefile + 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 + 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." + test -f /etc/debian_version && echo "Debian package libyaz-dev is required." +fi +