X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=7c299afa2fb85c6b83beeafef3e135e244018c48;hb=fdffce0ddb29102dd5aa533d6e42a5d0fa3e3222;hp=34f28e96e2154d7de29a23984786324a2cacd601;hpb=c853052276a4532643bb6ca00caf6e53bd28f703;p=idzebra-moved-to-github.git diff --git a/configure.in b/configure.in index 34f28e9..7c299af 100644 --- a/configure.in +++ b/configure.in @@ -1,11 +1,19 @@ dnl Zebra, Index Data Aps, 1995-2002 -dnl $Id: configure.in,v 1.48 2002-09-13 09:24:16 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.2) +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) +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 @@ -23,7 +31,7 @@ AC_ARG_WITH(dtd, [ --with-dtd[=DIR] Use docbookx.dtd in DIR], ],[ 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.2* \ /usr/share/sgml/docbook/xml-dtd-4.1 \ /usr/share/sgml/docbook/dtd/xml/4.0 \ /usr/lib/sgml/dtd/docbook-xml @@ -47,8 +55,7 @@ AC_ARG_WITH(dsssl,[ --with-dsssl[=DIR] Use DSSSL in DIR/{html,print}/docbo ],[ AC_MSG_CHECKING(for docbook.dsl) for d in /usr/share/sgml/docbook/stylesheet/dsssl/modular \ - /usr/share/sgml/docbook/dsssl-stylesheets-1.64 \ - /usr/share/sgml/docbook/dsssl-stylesheets-1.59 \ + /usr/share/sgml/docbook/dsssl-stylesheets-1.* \ /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh do if test -f $d/html/docbook.dsl; then @@ -122,18 +129,71 @@ 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_CHECK_FUNCS(iconv_open) -if test "$ac_cv_func_iconv_open" = "no"; then - oldLibs=$LIBS - LIBS="$LIBS -liconv" - AC_CHECK_FUNCS(iconv_open) - if test "$ac_cv_func_iconv_open" = "no"; then - LIBS=$oldLibs +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 -fi -if test "$ac_cv_func_iconv_open" = "yes"; then - AC_CHECK_HEADERS(iconv.h) + 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 @@ -167,6 +227,75 @@ if test "$expat" != "no"; then CFLAGS="$xCFLAGS" fi 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 "$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" + AM_CONDITIONAL(perl,true) + 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 @@ -225,7 +354,9 @@ AC_OUTPUT([ isamc/Makefile isam/Makefile rset/Makefile + data1/Makefile recctrl/Makefile + recctrl/perlread.h index/Makefile include/Makefile tab/Makefile @@ -234,6 +365,14 @@ AC_OUTPUT([ 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 + 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 + res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`; +fi