X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=configure.in;h=d66b29ae6e08bf5ffb026fa6a49ce7c4ede7ca5c;hb=c76cdd28e9040ef40ae81a991a826d03b556e22c;hp=4763db175fcb407440824ab1df8ca8b079c195b4;hpb=c620a713f1418315efcd4e6fab225e036775d365;p=yaz-moved-to-github.git diff --git a/configure.in b/configure.in index 4763db1..d66b29a 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl YAZ Toolkit, Index Data 1994-2003 dnl See the file LICENSE for details. -dnl $Id: configure.in,v 1.103 2003-02-12 15:06:42 adam Exp $ +dnl $Id: configure.in,v 1.105 2003-02-14 20:32:59 adam Exp $ AC_INIT(include/yaz/yaz-version.h) AM_INIT_AUTOMAKE(yaz, 1.9.3) dnl @@ -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,19 +329,19 @@ if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then fi AM_CONDITIONAL(ISTHR, test $HAVETHREADS = "1") dnl -dnl ----- XML/XSLT +dnl ----- libXML2/XSLT AC_SUBST(XSLT_LIB) AC_SUBST(XSLT_CFLAGS) -xsltdir=NONE +xsltdir=no AC_ARG_WITH(xslt, [ --with-xslt[=PREFIX] Use libxslt in PREFIX/{lib,include}],[xsltdir=$withval]) -if test "x$xsltdir" = "xNONE"; then +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 true; then +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` @@ -373,6 +394,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])