Added support of the complex indexing for MARC records (whithout documentation yet).
[idzebra-moved-to-github.git] / configure.in
index 3da6705..05605c2 100644 (file)
@@ -1,11 +1,12 @@
-dnl Zebra, Index Data Aps, 1995-2002
-dnl $Id: configure.in,v 1.62 2003-02-04 12:06:46 pop Exp $
+dnl Zebra, Index Data Aps, 1995-2003
+dnl $Id: configure.in,v 1.68 2003-02-28 12:33:38 oleg Exp $
 dnl
 AC_INIT(include/zebraver.h)
-AM_INIT_AUTOMAKE(idzebra,1.3.4)
+AM_INIT_AUTOMAKE(idzebra,1.3.7)
 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)
@@ -128,6 +129,39 @@ 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>
+        ],[
+        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
+dnl
 dnl ------ iconv
 AC_ARG_WITH(iconv, [  --with-iconv[=DIR]      iconv library in DIR])
 if test "$with_iconv" != "no"; then
@@ -332,10 +366,11 @@ AC_OUTPUT([
   doc/zebraprint.dsl
   doc/zebraphp.dsl
   doc/tkl.xsl
-  test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile
+  test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile test/rusmarc/Makefile
   perl/Makefile.PL test/xelm/Makefile
   test/dmoz/Makefile test/xpath/Makefile test/sort/Makefile
   examples/Makefile examples/gils/Makefile examples/zthes/Makefile
+  idzebra.spec
 ])
 
 if test -x "$perlbin"; then