X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=4555068ef1191cc6854db4ad9a6958e86fb55d7f;hb=df869b93d7eb00d07ffcd27556af94b00c518ad9;hp=50fcf8914f07e8750488d5cfbf4cf643c0ae568a;hpb=4d531a1a9131d69c3b6c27fbac42837e22cff61c;p=yaz-moved-to-github.git diff --git a/configure.in b/configure.in index 50fcf89..4555068 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,8 @@ dnl YAZ Toolkit, Index Data 1994-2003 dnl See the file LICENSE for details. -dnl $Id: configure.in,v 1.100 2003-01-06 08:20:26 adam Exp $ +dnl $Id: configure.in,v 1.107 2003-02-18 10:37:08 adam Exp $ AC_INIT(include/yaz/yaz-version.h) -AM_INIT_AUTOMAKE(yaz, 1.9.2) +AM_INIT_AUTOMAKE(yaz, 1.9.3) dnl AC_SUBST(READLINE_LIBS) AC_SUBST(YAZ_CONF_CFLAGS) @@ -62,6 +62,27 @@ AC_ARG_WITH(dsssl,[ --with-dsssl[=DIR] Use DSSSL in DIR/{html,print}/docbo AC_MSG_RESULT(Not found) fi ]) +AC_SUBST(XSL_DIR) +AC_ARG_WITH(xsl,[ --with-xsl[=DIR] Use XSL in DIR/{htmlhelp,xhtml}], +[ + if test -f "$withval/htmlhelp/htmlhelp.xsl"; then + XSL_DIR=$withval + fi +],[ + AC_MSG_CHECKING(for htmlhelp.xsl) + for d in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \ + /usr/share/sgml/docbook/xsl-stylesheets-1.* + do + if test -f $d/htmlhelp/htmlhelp.xsl; then + AC_MSG_RESULT($d) + XSL_DIR=$d + break + fi + done + if test -z "$XSL_DIR"; then + AC_MSG_RESULT(Not found) + fi +]) dnl dnl ----- Sockets checkBoth=0 @@ -308,56 +329,55 @@ if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then fi AM_CONDITIONAL(ISTHR, test $HAVETHREADS = "1") dnl -dnl ----- gSOAP -AC_SUBST(GSOAP_LIB) -AC_SUBST(GSOAP_INCLUDE) -AC_SUBST(GSOAP_PREFIX) -gsoapdir=NONE -AC_ARG_WITH(gsoap, [ --with-gsoap[=PREFIX] Use gSOAP in PREFIX/{lib,include}],[gsoapdir=$withval]) -if test "x$gsoapdir" = "xNONE"; then +dnl ----- libXSLT +AC_SUBST(XSLT_LIB) +AC_SUBST(XSLT_CFLAGS) +xsltdir=no +AC_ARG_WITH(xslt, [ --with-xslt[=PREFIX] Use libxslt in PREFIX/{lib,include}],[xsltdir=$withval]) +if test "$xsltdir" = "yes"; then for d in /usr /usr/local; do - if test -f $d/include/stdsoap2.h; then - gsoapdir=$d + if test -x $d/bin/xslt-config; then + xsltdir=$d fi done fi -AC_MSG_CHECKING(for gSOAP prefix) -GSOAP_PREFIX=$gsoapdir -if test -x $gsoapdir/bin/soapcpp2; then - AC_MSG_RESULT($gsoapdir) - if test "$gsoapdir" != "/usr"; then - GSOAP_LIB="-L$gsoapdir/lib -lgsoap" - GSOAP_INCLUDE=-I$gsoapdir/include +if test "$xsltdir" != "no"; then + AC_MSG_CHECKING(for XSLT) + if test -x $xsltdir/bin/xslt-config; then + XSLT_LIB=`$xsltdir/bin/xslt-config --libs` + XSLT_CFLAGS=`$xsltdir/bin/xslt-config --cflags` + XSLT_VER=`$xsltdir/bin/xslt-config --version` + AC_MSG_RESULT($XSLT_VER) + AC_DEFINE(HAVE_XSLT) + else + AC_MSG_RESULT(Not found) fi - AC_DEFINE(HAVE_GSOAP) - usesrw=1 -else - AC_MSG_RESULT(Not found) - usesrw=0 fi -AM_CONDITIONAL(SRW, test $usesrw = "1") dnl -dnl ----- XML/XSLT -AC_SUBST(XSLT_LIB) -AC_SUBST(XSLT_CFLAGS) -xsltdir=NONE -AC_ARG_WITH(xslt, [ --with-xslt[=PREFIX] Use libxslt in PREFIX/{lib,include}],[xsltdir=$withval]) -if test "x$xsltdir" = "xNONE"; then +dnl ----- libXML2 +AC_SUBST(XML2_LIBS) +AC_SUBST(XML2_CFLAGS) +xml2dir=no +AC_ARG_WITH(xml2, [ --with-xml2[=PREFIX] Use libxml2 in PREFIX/{lib,include}],[xml2dir=$withval]) +if test "$xml2dir" = "yes"; then for d in /usr /usr/local; do - if test -x $d/bin/xslt-config; then - xsltdir=$d + if test -x $d/bin/xml2-config; then + xml2dir=$d fi done fi -AC_MSG_CHECKING(for XSLT) -if test -x $xsltdir/bin/xslt-config; then - XSLT_LIB=`$xsltdir/bin/xslt-config --libs` - XSLT_CFLAGS=`$xsltdir/bin/xslt-config --cflags` - XSLT_VER=`$xsltdir/bin/xslt-config --version` - AC_MSG_RESULT($XSLT_VER) - AC_DEFINE(HAVE_XSLT) -else - AC_MSG_RESULT(Not found) +if test "$xml2dir" != "no"; then + AC_MSG_CHECKING(for libXML2) + if test -x $xml2dir/bin/xml2-config; then + XML2_LIBS=`$xml2dir/bin/xml2-config --libs` + LIBS="$XML2_LIBS $LIBS" + XML2_CFLAGS=`$xml2dir/bin/xml2-config --cflags` + XML2_VER=`$xml2dir/bin/xml2-config --version` + AC_MSG_RESULT($XML2_VER) + AC_DEFINE(HAVE_XML2) + else + AC_MSG_RESULT(Not found) + fi fi dnl dnl ------ Memory debugging @@ -382,7 +402,6 @@ yaz.spec util/Makefile odr/Makefile z39.50/Makefile -srw/Makefile ill/Makefile zutil/Makefile comstack/Makefile @@ -391,7 +410,6 @@ cql/Makefile server/Makefile include/Makefile include/yaz/Makefile -srwapps/Makefile lib/Makefile client/Makefile ztest/Makefile @@ -402,6 +420,7 @@ doc/yazhtml.dsl doc/yazphp.dsl doc/yazprint.dsl doc/tkl.xsl +doc/yazhtml.xsl etc/Makefile yaz-config ],[sed s%yaz_echo_source=yes%yaz_echo_source=no%g < yaz-config > lib/yaz-config && chmod +x yaz-config lib/yaz-config])