X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=58cd24b2bd4a57627867fe9190f324c499be9f8b;hb=4e68a651c499e3acc77fbf2dbedd294855206f00;hp=1a387733b69d07d1b1402c4238861add03fbbda4;hpb=f1a9ed95b17effaee3cb8a3e8117d94030ea3b21;p=idzebra-moved-to-github.git diff --git a/configure.in b/configure.in index 1a38773..58cd24b 100644 --- a/configure.in +++ b/configure.in @@ -1,46 +1,74 @@ -dnl Zebra, Index Data Aps, 1994-2000 -dnl $Id: configure.in,v 1.26 2001-02-21 09:52:39 adam Exp $ +dnl Zebra, Index Data Aps, 1995-2002 +dnl $Id: configure.in,v 1.55 2002-11-09 22:26:19 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 - touch ${srcdir}/isam/Makefile.in - fi - if test ! -r ${srcdir}/isamc; then - mkdir ${srcdir}/isamc - touch ${srcdir}/isamc/Makefile.in - fi - if test ! -r ${srcdir}/isamb; then - mkdir ${srcdir}/isamb - touch ${srcdir}/isamb/Makefile.in - fi -fi -AM_CONDITIONAL(ISZMBOL,test $PACKAGE = zmbol) +AM_INIT_AUTOMAKE(idzebra,1.3.3) dnl ------ Substitutions -AC_SUBST(DEFS) AC_SUBST(TCL_INCLUDE) AC_SUBST(TCL_LIB) -AC_SUBST(PROGPREFIX) dnl dnl ------ Checking programs AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL AC_PROG_RANLIB - -YAZ_INIT(threads) dnl +dnl ----- DOCBOOK DTD +AC_SUBST(DTD_DIR) +AC_ARG_WITH(dtd, [ --with-dtd[=DIR] Use docbookx.dtd in DIR], +[ + if test -f "$withval/docbookx.dtd"; then + DTD_DIR=$withval + fi +],[ + AC_MSG_CHECKING(for docbookx.dtd) + for d in /usr/share/sgml/docbook/dtd/xml/4.1.2 \ + /usr/share/sgml/docbook/xml-dtd-4.1.2* \ + /usr/share/sgml/docbook/xml-dtd-4.1 \ + /usr/share/sgml/docbook/dtd/xml/4.0 \ + /usr/lib/sgml/dtd/docbook-xml + do + if test -f $d/docbookx.dtd; then + AC_MSG_RESULT($d) + DTD_DIR=$d + break + fi + done + if test -z "$DTD_DIR"; then + AC_MSG_RESULT(Not found) + fi +]) +AC_SUBST(DSSSL_DIR) +AC_ARG_WITH(dsssl,[ --with-dsssl[=DIR] Use DSSSL in DIR/{html,print}/docbook.dsl], +[ + if test -f "$withval/html/docbook.dsl"; then + DSSSL_DIR=$withval + fi +],[ + AC_MSG_CHECKING(for docbook.dsl) + for d in /usr/share/sgml/docbook/stylesheet/dsssl/modular \ + /usr/share/sgml/docbook/dsssl-stylesheets-1.* \ + /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh + do + if test -f $d/html/docbook.dsl; then + AC_MSG_RESULT($d) + DSSSL_DIR=$d + break + fi + done + if test -z "$DSSSL_DIR"; then + AC_MSG_RESULT(Not found) + fi +]) +dnl +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) + 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 +82,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,7 +97,10 @@ 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 @@ -77,12 +116,75 @@ else fi dnl dnl ------ times -AC_CHECK_HEADERS(sys/times.h pthread.h) +AC_CHECK_HEADERS(sys/times.h) +dnl +dnl ------ mkstemp +AC_CHECK_FUNCS(mkstemp) +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 + ],[ + static void f() {iconv_t t = iconv_open("", ""); } + ],[ + AC_DEFINE(HAVE_ICONV_H) + AC_MSG_RESULT(yes) + ],[ + LIBS="$LIBS -liconv" + AC_TRY_LINK([ + #include + ],[ + static void f() {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) if test "$ac_cv_lib_bz2_bzCompressInit" = "yes"; then AC_CHECK_HEADERS(bzlib.h) +else + AC_CHECK_LIB(bz2,BZ2_bzCompressInit) + if test "$ac_cv_lib_bz2_BZ2_bzCompressInit" = "yes"; then + AC_CHECK_HEADERS(bzlib.h) + fi +fi +dnl +dnl ------ EXPAT +expat=yes +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,[LIBS="$LIBS -lexpat"]) + if test "$ac_cv_lib_expat_XML_ParserCreate" = "yes"; then + AC_CHECK_HEADERS(expat.h) + else + LIBS="$xLIBS" + CFLAGS="$xCFLAGS" + fi fi dnl ------- 64 bit files AC_MSG_CHECKING(for LFS) @@ -91,17 +193,31 @@ AC_TRY_RUN([#define _FILE_OFFSET_BITS 64 #include #include #include +#include +#include int main(int argc, char **argv) { off_t o; char tmp_str[32]; - if (sizeof(off_t) == 8) { - o = 2000000000; - sprintf (tmp_str, "%Ld", o+o+o); - if (!strcmp (tmp_str, "6000000000")) - exit (0); - } - exit (1); + int fd; + struct flock area; + if (sizeof(off_t) != 8) + exit (1); + o = 2000000000; + sprintf (tmp_str, "%Ld", o+o+o); + if (strcmp (tmp_str, "6000000000")) + exit (1); + fd = creat ("config.tmp", 0644); + if (fd < 0) + exit (1); + area.l_type = F_WRLCK; + area.l_whence = SEEK_SET; + area.l_len = area.l_start = 0L; + if (fcntl(fd, F_SETLKW, &area)) + exit (1); + close (fd); + unlink ("config.tmp"); + exit (0); } ],bits=64,bits=32,bits=32) if test "$bits" = "64"; then @@ -128,10 +244,18 @@ AC_OUTPUT([ isamc/Makefile isam/Makefile rset/Makefile + data1/Makefile recctrl/Makefile index/Makefile include/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/dmoz/Makefile test/xpath/Makefile + examples/Makefile examples/gils/Makefile ])