Added Doxyfile.
[idzebra-moved-to-github.git] / configure.in
index 071de3b..8492077 100644 (file)
@@ -1,72 +1,18 @@
-dnl Zebra, Index Data Aps, 1995-2002
-dnl $Id: configure.in,v 1.56 2002-11-15 21:26:00 adam Exp $
+dnl Zebra, Index Data ApS, 1995-2005
+dnl $Id: configure.in,v 1.114 2005-01-15 21:43:40 adam Exp $
 dnl
-AC_INIT(include/zebraver.h)
-AM_INIT_AUTOMAKE(idzebra,1.3.3)
+AC_INIT(include/idzebra/version.h)
+AM_INIT_AUTOMAKE(idzebra,1.4.0)
 dnl ------ Substitutions
 AC_SUBST(TCL_INCLUDE)
 AC_SUBST(TCL_LIB)
-dnl ------ Perl substitutions
-AC_SUBST(PERL_BINARY)
-AC_SUBST(PERL_XS_INIT)
-AC_SUBST(PERL_XS_INIT_INCLUDE)
-AC_SUBST(PERL_LIBS)
-AC_SUBST(PERL_CFLAGS)
-AC_SUBST(ZPERL_LIBS)
+AC_SUBST(READLINE_LIBS)
 dnl
 dnl ------ Checking programs
 AC_PROG_CC
 AC_PROG_CPP
-AC_PROG_INSTALL
-AC_PROG_RANLIB
-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
-])
+AM_DISABLE_SHARED
+AM_PROG_LIBTOOL
 dnl
 AC_ARG_ENABLE(threads, [  --disable-threads       disable threads],[enable_threads=$enableval],[enable_threads=yes])
 if test "$enable_threads" = "yes"; then
@@ -74,8 +20,8 @@ if test "$enable_threads" = "yes"; then
 else
        yazflag=""
 fi
-YAZ_INIT($yazflag)
-
+YAZ_INIT($yazflag,2.0.29)
+YAZ_DOC
 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
@@ -111,6 +57,7 @@ if test -r ${tclconfig}/tclConfig.sh; then
                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
@@ -128,8 +75,35 @@ dnl
 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 <stdio.h>
+        #include <readline/readline.h>
+        ],[
+                rl_attempted_completion_over = 0;
+        ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER))
+        AC_TRY_LINK([
+        #include <stdio.h>
+        #include <readline/readline.h>
+        ],[
+                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])
+AC_ARG_WITH(iconv, [  --with-iconv[=DIR]        iconv library in DIR])
 if test "$with_iconv" != "no"; then
        AC_MSG_CHECKING(for iconv)
        oldLIBS="$LIBS"
@@ -141,7 +115,7 @@ if test "$with_iconv" != "no"; then
        AC_TRY_LINK([
                #include <iconv.h>
        ],[
-               static void f() {iconv_t t = iconv_open("", ""); }
+               iconv_t t = iconv_open("", "");
        ],[
                AC_DEFINE(HAVE_ICONV_H)
                AC_MSG_RESULT(yes)
@@ -150,7 +124,7 @@ if test "$with_iconv" != "no"; then
                AC_TRY_LINK([
                        #include <iconv.h>
                ],[
-                       static void f() {iconv_t t = iconv_open("", ""); }
+                       iconv_t t = iconv_open("", "");
                ],[
                        AC_DEFINE(HAVE_ICONV_H)
                        AC_MSG_RESULT(yes)
@@ -173,9 +147,15 @@ else
        fi
 fi
 dnl
+dnl ------ -lm
+AC_CHECK_LIB(m,sqrt)
+dnl ------ -ldl
+AC_CHECK_LIB(dl,dlopen)
+dnl
 dnl ------ EXPAT
 expat=yes
-AC_ARG_WITH(expat,   [  --with-expat[=DIR]      EXPAT library in DIR],[expat=$withval])
+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";
@@ -185,81 +165,14 @@ if test "$expat" != "no"; then
                CFLAGS="$EXPAT_CFLAGS $CFLAGS"
                LIBS="$EXPAT_LIBS $LIBS"
        fi
-       AC_CHECK_LIB(expat,XML_ParserCreate,[LIBS="$LIBS -lexpat"])
+       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)
-       else
-               LIBS="$xLIBS"
-               CFLAGS="$xCFLAGS"
        fi
+       LIBS="$xLIBS"
+       CFLAGS="$xCFLAGS"
 fi
 dnl
-dnl ------ PERL
-perl=yes
-PERL_XS_INIT="NULL"
-PERL_XS_INIT_INCLUDE=''
-PERL_BINARY=""
-AC_ARG_WITH(perl,   [  --with-perl[=FILE]      perl binary location],[perl=$withval])
-if test "$perl" != "no"; then
-       AC_MSG_CHECKING(for perl binary)
-       if test "$perl" == "yes"; then
-           perlbin=`which perl`
-       else
-            perlbin="$perl"
-        fi 
-        if test -x "$perlbin"; then
-           AC_MSG_RESULT($perlbin)     
-           AC_MSG_CHECKING(perl core directory)
-           archdir=`$perlbin -MConfig -e 'print $Config{archlib}'`;
-           perlcore="$archdir/CORE";
-           if test "$perlcore"; then
-               PERL_BINARY="$perlbin"
-               AC_MSG_RESULT($perlcore)        
-               AC_DEFINE(HAVE_PERL,1)
-           else
-               AC_MSG_RESULT(Failed)   
-               AC_DEFINE(HAVE_PERL,0)
-           fi
-
-           AC_MSG_CHECKING("for ExtUtils::Embed to determine ccopts")
-           PERL_CFLAGS=`$perlbin -MExtUtils::Embed -e ccopts 2>/dev/null`
-           if test "$PERL_CFLAGS"; then
-               AC_MSG_RESULT(OK)       
-            else
-               PERL_CFLAGS="-I$perlcore"
-               AC_MSG_RESULT(Using defaults)   
-           fi
-
-           AC_MSG_CHECKING("for ExtUtils::Embed to determine ldflags")
-           PERL_LIBS=`$perlbin -MExtUtils::Embed -e ldopts 2>/dev/null`
-           if test "$PERL_LIBS"; then
-               AC_MSG_RESULT(OK)       
-            else
-                PERL_LIBS="-L$perlcore -lperl -lm"
-               AC_MSG_RESULT(Using defaults)   
-           fi
-
-           AC_MSG_CHECKING("for ExtUtils::Embed to create xs_init")
-           xsf="recctrl/xsinit.h"
-           `rm $xsf 2>/dev/null`;
-
-           `$perlbin -MExtUtils::Embed -e xsinit -- -o $xsf 2>/dev/null`
-           if test -r "$xsf"; then
-               AC_MSG_RESULT(OK)       
-               PERL_XS_INIT="xs_init"
-               PERL_XS_INIT_INCLUDE='#include "xsinit.h"'
-            else
-               AC_MSG_RESULT(XS libraries are not going to be available)
-            fi
-
-           ZPERL_LIBS="$LIBS"
-           CFLAGS="$PERL_CFLAGS $CFLAGS"
-           LIBS="$PERL_LIBS $LIBS"
-        else
-           AC_DEFINE(HAVE_PERL,0)
-           AC_MSG_RESULT(Not found)
-       fi
-fi
 dnl ------- 64 bit files
 AC_MSG_CHECKING(for LFS)
 AC_TRY_RUN([#define _FILE_OFFSET_BITS 64
@@ -300,12 +213,62 @@ 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([bad value. Assuming disabled])
+       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)])
 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
@@ -316,13 +279,11 @@ AC_OUTPUT([
   isamb/Makefile
   isams/Makefile
   isamc/Makefile
-  isam/Makefile
   rset/Makefile
   data1/Makefile
   recctrl/Makefile
-  recctrl/perlread.h
   index/Makefile
-  include/Makefile
+  include/Makefile include/idzebra/Makefile
   tab/Makefile
   doc/Makefile
   doc/zebra.xml
@@ -331,11 +292,22 @@ AC_OUTPUT([
   doc/zebraphp.dsl
   doc/tkl.xsl
   test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile
-  perl/Makefile.PL
-  test/dmoz/Makefile test/xpath/Makefile
-  examples/Makefile examples/gils/Makefile
-])
-
-if test -x "$perlbin"; then
-  res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
+  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
+  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
+