Look for docbook xsl in other place for FreeBSD
[m4-moved-to-github.git] / yaz.m4
1 # Use this m4 function for autoconf if you use YAZ in your own
2 # configure script.
3
4 dnl ----- Setup Docbook documentation for YAZ
5 AC_DEFUN([YAZ_DOC],
6 [
7 AC_SUBST(DTD_DIR)       
8 AC_ARG_WITH(docbook-dtd,[[  --with-docbook-dtd=DIR  use docbookx.dtd in DIR]],
9 [
10         if test -f "$withval/docbookx.dtd"; then
11                 DTD_DIR=$withval
12         fi
13 ],[
14         AC_MSG_CHECKING(for docbookx.dtd)
15         DTD_DIR=""
16         for d in /usr/lib/sgml/dtd/docbook-xml \
17                  /usr/share/sgml/docbook/dtd/4.2 \
18                  /usr/share/sgml/docbook/dtd/xml/4.* \
19                  /usr/share/sgml/docbook/xml-dtd-4.* \
20                 /usr/local/share/xml/docbook/4.*
21         do
22                 if test -f $d/docbookx.dtd; then
23                         DTD_DIR=$d
24                 fi
25         done
26         if test -z "$DTD_DIR"; then
27                 AC_MSG_RESULT(Not found)
28         else
29                 AC_MSG_RESULT($d)
30         fi
31 ])
32 AC_SUBST(DSSSL_DIR)
33 AC_ARG_WITH(docbook-dsssl,[[  --with-docbook-dsssl=DIR use Docbook DSSSL in DIR/{html,print}/docbook.dsl]],
34 [
35         if test -f "$withval/html/docbook.dsl"; then
36                 DSSSL_DIR=$withval
37         fi
38 ],[
39         AC_MSG_CHECKING(for docbook.dsl)
40         DSSSL_DIR=""
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 \
44                 /usr/local/share/sgml/docbook/dsssl/modular
45         do
46                 if test -f $d/html/docbook.dsl; then
47                         AC_MSG_RESULT($d)
48                         DSSSL_DIR=$d
49                         break
50                 fi
51         done
52         if test -z "$DSSSL_DIR"; then
53                 AC_MSG_RESULT(Not found)
54         fi
55 ])
56 AC_SUBST(XSL_DIR)
57 AC_ARG_WITH(docbook-xsl,[[  --with-docbook-xsl=DIR  use Docbook XSL in DIR/{htmlhelp,xhtml}]],
58 [
59         if test -f "$withval/htmlhelp/htmlhelp.xsl"; then
60                 XSL_DIR=$withval
61         fi
62 ],[
63         AC_MSG_CHECKING(for htmlhelp.xsl)
64         for d in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
65                 /usr/local/share/xsl/docbook \
66                 /usr/share/sgml/docbook/xsl-stylesheets-1.* 
67         do
68                 if test -f $d/htmlhelp/htmlhelp.xsl; then
69                         AC_MSG_RESULT($d)
70                         XSL_DIR=$d
71                         break
72                 fi
73         done
74         if test -z "$XSL_DIR"; then
75                 AC_MSG_RESULT(Not found)
76         fi
77 ])
78 ]) 
79
80 AC_DEFUN([YAZ_INIT],
81 [
82         AC_SUBST(YAZLIB)
83         AC_SUBST(YAZLALIB)
84         AC_SUBST(YAZINC)
85         AC_SUBST(YAZVERSION)
86         yazconfig=NONE
87         yazpath=NONE
88         AC_ARG_WITH(yaz, [  --with-yaz=DIR          use yaz-config in DIR (example /home/yaz-1.7)], [yazpath=$withval])
89         if test "x$yazpath" != "xNONE"; then
90                 yazconfig=$yazpath/yaz-config
91         else
92                 if test "x$srcdir" = "x"; then
93                         yazsrcdir=.
94                 else
95                         yazsrcdir=$srcdir
96                 fi
97                 for i in ${yazsrcdir}/../../yaz ${yazsrcdir}/../yaz-* ${yazsrcdir}/../yaz; do
98                         if test -d $i; then
99                                 if test -r $i/yaz-config; then
100                                         yazconfig=$i/yaz-config
101                                 fi
102                         fi
103                 done
104                 if test "x$yazconfig" = "xNONE"; then
105                         AC_PATH_PROG(yazconfig, yaz-config, NONE)
106                 fi
107         fi
108         AC_MSG_CHECKING(for YAZ)
109         if $yazconfig --version >/dev/null 2>&1; then
110                 YAZLIB=`$yazconfig --libs $1`
111                 # if this is empty, it's a simple version YAZ 1.6 script
112                 # so we have to source it instead...
113                 if test "X$YAZLIB" = "X"; then
114                         . $yazconfig
115                 else
116                         YAZLALIB=`$yazconfig --lalibs $1`
117                         YAZINC=`$yazconfig --cflags $1`
118                         YAZVERSION=`$yazconfig --version`
119                 fi
120                 AC_MSG_RESULT([$yazconfig])
121         else
122                 AC_MSG_RESULT(Not found)
123                 YAZVERSION=NONE
124         fi
125         if test "X$YAZVERSION" != "XNONE"; then
126                 AC_MSG_CHECKING([for YAZ version])
127                 AC_MSG_RESULT([$YAZVERSION])
128                 if test "$2"; then
129                         have_yaz_version=`echo "$YAZVERSION" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`
130                         req_yaz_version=`echo "$2" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`
131                         if test "$have_yaz_version" -lt "$req_yaz_version"; then
132                                 AC_MSG_ERROR([$YAZVERSION. Requires YAZ $2 or later])
133                         fi
134                         if test "$req_yaz_version" -gt "2000028"; then
135                                 YAZINC="$YAZINC -DYAZ_USE_NEW_LOG=1"
136                         fi
137                 fi
138         fi
139 ]) 
140