X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=7c299afa2fb85c6b83beeafef3e135e244018c48;hb=fdffce0ddb29102dd5aa533d6e42a5d0fa3e3222;hp=071de3b1c88be87235e0b69f81e5148e3bf43524;hpb=af03c4a4f5320b52c7cc5f47bab7c9ad4b3e384d;p=idzebra-moved-to-github.git diff --git a/configure.in b/configure.in index 071de3b..7c299af 100644 --- a/configure.in +++ b/configure.in @@ -1,11 +1,12 @@ dnl Zebra, Index Data Aps, 1995-2002 -dnl $Id: configure.in,v 1.56 2002-11-15 21:26:00 adam Exp $ +dnl $Id: configure.in,v 1.64 2003-02-20 21:06:47 adam Exp $ dnl AC_INIT(include/zebraver.h) -AM_INIT_AUTOMAKE(idzebra,1.3.3) +AM_INIT_AUTOMAKE(idzebra,1.3.4) 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 + #include + ],[ + static void f() + { + rl_attempted_completion_over = 0; + } + ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER)) + AC_TRY_LINK([ + #include + #include + ],[ + 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 @@ -195,14 +229,15 @@ if test "$expat" != "no"; then fi dnl dnl ------ PERL -perl=yes +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 + if test "$perl" = "yes"; then perlbin=`which perl` else perlbin="$perl" @@ -255,6 +290,7 @@ if test "$perl" != "no"; then ZPERL_LIBS="$LIBS" CFLAGS="$PERL_CFLAGS $CFLAGS" LIBS="$PERL_LIBS $LIBS" + AM_CONDITIONAL(perl,true) else AC_DEFINE(HAVE_PERL,0) AC_MSG_RESULT(Not found) @@ -331,9 +367,10 @@ 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 + 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