1 # Use this m4 function for autoconf if you use YAZ in your own
4 dnl ----- Setup Docbook documentation for YAZ
8 AC_ARG_WITH(docbook-dtd, [ --with-docbook-dtd[=DIR] use docbookx.dtd in DIR],
10 if test -f "$withval/docbookx.dtd"; then
14 AC_MSG_CHECKING(for docbookx.dtd)
16 for d in /usr/share/sgml/docbook/dtd/xml/4.1.2 \
17 /usr/share/sgml/docbook/xml-dtd-4.1.2* \
18 /usr/share/sgml/docbook/xml-dtd-4.1 \
19 /usr/share/sgml/docbook/dtd/xml/4.0 \
20 /usr/lib/sgml/dtd/docbook-xml
22 if test -f $d/docbookx.dtd; then
28 if test -z "$DTD_DIR"; then
29 AC_MSG_RESULT(Not found)
33 AC_ARG_WITH(docbook-dsssl,[ --with-docbook-dsssl[=DIR] use Docbook DSSSL in DIR/{html,print}/docbook.dsl],
35 if test -f "$withval/html/docbook.dsl"; then
39 AC_MSG_CHECKING(for docbook.dsl)
41 for d in /usr/share/sgml/docbook/stylesheet/dsssl/modular \
42 /usr/share/sgml/docbook/dsssl-stylesheets-1.* \
43 /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh
45 if test -f $d/html/docbook.dsl; then
51 if test -z "$DSSSL_DIR"; then
52 AC_MSG_RESULT(Not found)
56 AC_ARG_WITH(docbook-xsl,[ --with-docbook-xsl[=DIR] use Docbook XSL in DIR/{htmlhelp,xhtml}],
58 if test -f "$withval/htmlhelp/htmlhelp.xsl"; then
62 AC_MSG_CHECKING(for htmlhelp.xsl)
63 for d in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
64 /usr/share/sgml/docbook/xsl-stylesheets-1.*
66 if test -f $d/htmlhelp/htmlhelp.xsl; then
72 if test -z "$XSL_DIR"; then
73 AC_MSG_RESULT(Not found)
86 AC_ARG_WITH(yaz, [ --with-yaz=DIR use yaz-config in DIR (example /home/yaz-1.7)], [yazpath=$withval])
87 if test "x$yazpath" != "xNONE"; then
88 yazconfig=$yazpath/yaz-config
90 if test "x$srcdir" = "x"; then
95 for i in ${yazsrcdir}/../../yaz ${yazsrcdir}/../yaz* ${yazsrcdir}/../yaz; do
97 if test -r $i/yaz-config; then
98 yazconfig=$i/yaz-config
102 if test "x$yazconfig" = "xNONE"; then
103 AC_PATH_PROG(yazconfig, yaz-config, NONE)
106 AC_MSG_CHECKING(for YAZ)
107 if $yazconfig --version >/dev/null 2>&1; then
108 YAZLIB=`$yazconfig --libs $1`
109 # if this is empty, it's a simple version YAZ 1.6 script
110 # so we have to source it instead...
111 if test "X$YAZLIB" = "X"; then
114 YAZLALIB=`$yazconfig --lalibs $1`
115 YAZINC=`$yazconfig --cflags $1`
116 YAZVERSION=`$yazconfig --version`
118 AC_MSG_RESULT([$yazconfig])
120 AC_MSG_RESULT(Not found)
123 if test "X$YAZVERSION" != "XNONE"; then
124 AC_MSG_CHECKING([for YAZ version])
125 AC_MSG_RESULT([$YAZVERSION])
127 have_yaz_version=`echo "$YAZVERSION" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`
128 req_yaz_version=`echo "$2" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`
129 if test "$have_yaz_version" -lt "$req_yaz_version"; then
130 AC_MSG_ERROR([$YAZVERSION. Requires $2 or later])
132 if test "$req_yaz_version" -gt "2000028"; then
133 YAZINC="$YAZINC -DYAZ_USE_NEW_LOG=1"