Process all source with doyxgen
[idzebra-moved-to-github.git] / configure.in
index 4c3ef7b..52da348 100644 (file)
@@ -1,5 +1,5 @@
-dnl Zebra, Index Data Aps, 1995-2004
-dnl $Id: configure.in,v 1.98 2004-09-13 07:44:10 adam Exp $
+dnl Zebra, Index Data ApS, 1995-2005
+dnl $Id: configure.in,v 1.124 2005-05-24 20:39:02 adam Exp $
 dnl
 AC_INIT(include/idzebra/version.h)
 AM_INIT_AUTOMAKE(idzebra,1.4.0)
@@ -7,13 +7,6 @@ dnl ------ Substitutions
 AC_SUBST(TCL_INCLUDE)
 AC_SUBST(TCL_LIB)
 AC_SUBST(READLINE_LIBS)
-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)
 dnl
 dnl ------ Checking programs
 AC_PROG_CC
@@ -21,14 +14,56 @@ AC_PROG_CPP
 AM_DISABLE_SHARED
 AM_PROG_LIBTOOL
 dnl
+dnl ------ headers
+AC_CHECK_HEADERS(sys/times.h unistd.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
-YAZ_INIT($yazflag)
+dnl
+dnl ------ YAZ
+YAZ_INIT($yazflag,2.1.5)
 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
@@ -76,9 +111,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
@@ -98,19 +130,13 @@ if test "$ac_cv_lib_readline_readline" = "yes"; then
         #include <stdio.h>
         #include <readline/readline.h>
         ],[
-        static void f()
-        {
                 rl_attempted_completion_over = 0;
-        }
         ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER))
         AC_TRY_LINK([
         #include <stdio.h>
         #include <readline/readline.h>
         ],[
-        static void f()
-        {
                 rl_completion_matches (0, 0);
-        }
         ],AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES))
         LIBS=$xLIBS
 fi
@@ -128,7 +154,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)
@@ -137,7 +163,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)
@@ -162,9 +188,12 @@ 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";
@@ -175,99 +204,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
-AM_CONDITIONAL(perl,false)
-perl=no
-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 -d "$perlcore"; then
-               PERL_BINARY="$perlbin"
-               AC_MSG_RESULT($perlcore)        
-           else
-               AC_MSG_RESULT(Failed)   
-           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
-
-           xLIBS="$LIBS"
-           xCFLAGS="$CFLAGS"
-           CFLAGS="$PERL_CFLAGS $CFLAGS"
-           LIBS="$PERL_LIBS $LIBS"
-
-           AC_MSG_CHECKING(for perl library)
-            AC_TRY_LINK([
-            #include <stdio.h>
-             ],[
-            static void f()
-            {
-               ;
-            }
-               ],AM_CONDITIONAL(perl,true)
-                 AC_DEFINE(HAVE_PERL,1)
-                 AC_MSG_RESULT(found)
-                 ZPERL_LIBS="$xLIBS"
-                       ,
-                  AC_MSG_RESULT(not found)
-                 AC_DEFINE(HAVE_PERL,0)
-                 LIBS="$xLIBS"
-                 CFLAGS="$xCFLAGS")
-        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
@@ -308,7 +252,61 @@ 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
@@ -331,7 +329,6 @@ AC_OUTPUT([
   rset/Makefile
   data1/Makefile
   recctrl/Makefile
-  recctrl/perlread.h
   index/Makefile
   include/Makefile include/idzebra/Makefile
   tab/Makefile
@@ -342,20 +339,23 @@ 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/config/Makefile
-  perl/Makefile.PL test/xelm/Makefile
-  test/dmoz/Makefile test/xpath/Makefile test/sort/Makefile test/zsh/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 -x "$perlbin"; then
-       res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
-fi
 if test  -z "$YAZLIB"; then
-       echo "YAZ was not found. Use --with-yazconfig=DIR to specify location."
+       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