Bugfix to allow #PQF and #CCL anchors to work in generated HTML
[yaz-moved-to-github.git] / yaz.m4
1 ## $Id: yaz.m4,v 1.3 2001-03-26 14:42:37 adam Exp $
2 ## 
3 # Use this m4 funciton for autoconf if you use YAZ in your own
4 # configure script.
5 # YAZ_INIT
6
7 AC_DEFUN([YAZ_INIT],
8 [
9         AC_SUBST(YAZLIB)
10         AC_SUBST(YAZLALIB)
11         AC_SUBST(YAZINC)
12         AC_SUBST(YAZVERSION)
13         yazconfig=NONE
14         yazpath=NONE
15         AC_ARG_WITH(yazconfig, [  --with-yazconfig=DIR    yaz-config in DIR (example /home/yaz-1.7)], [yazpath=$withval])
16         if test "x$yazpath" != "xNONE"; then
17                 yazconfig=$yazpath/yaz-config
18         else
19                 if test "x$srcdir" = "x"; then
20                         yazsrcdir=.
21                 else
22                         yazsrcdir=$srcdir
23                 fi
24                 for i in ${yazsrcdir}/../yaz* ${yazsrcdir}/../yaz; do
25                         if test -d $i; then
26                                 if test -r $i/yaz-config; then
27                                         yazconfig=$i/yaz-config
28                                 fi
29                         fi
30                 done
31                 if test "x$yazconfig" = "xNONE"; then
32                         AC_PATH_PROG(yazconfig, yaz-config, NONE)
33                 fi
34         fi
35         AC_MSG_CHECKING(for YAZ)
36         if $yazconfig --version >/dev/null 2>&1; then
37                 YAZLIB=`$yazconfig --libs $1`
38                 # if this is empty, it's a simple version YAZ 1.6 script
39                 # so we have to source it instead...
40                 if test "X$YAZLIB" = "X"; then
41                         . $yazconfig
42                 else
43                         YAZLALIB=`$yazconfig --lalibs $1`
44                         YAZINC=`$yazconfig --cflags $1`
45                         YAZVERSION=`$yazconfig --version`
46                 fi
47                 AC_MSG_RESULT($yazconfig)
48         else
49                 AC_MSG_RESULT(Not found)
50                 YAZVERSION=NONE
51         fi
52 ])
53