php-src/ext/yaz/config.m4

54 lines
1.4 KiB
Plaintext
Raw Normal View History

2001-11-30 19:00:13 +00:00
dnl
dnl $Id$
2001-11-30 19:00:13 +00:00
dnl
2000-06-10 03:35:57 +00:00
PHP_ARG_WITH(yaz,for YAZ support,
2001-11-30 19:00:13 +00:00
[ --with-yaz[=DIR] Include YAZ support (ANSI/NISO Z39.50).
DIR is the YAZ bin install directory.])
2000-06-10 03:35:57 +00:00
if test "$PHP_YAZ" != "no"; then
yazconfig=NONE
if test "$PHP_YAZ" = "yes"; then
AC_PATH_PROG(yazconfig, yaz-config, NONE)
else
if test -r ${PHP_YAZ}/yaz-config; then
yazconfig=${PHP_YAZ}/yaz-config
else
yazconfig=${PHP_YAZ}/bin/yaz-config
fi
fi
if test -f $yazconfig; then
AC_DEFINE(HAVE_YAZ,1,[Whether you have YAZ])
. $yazconfig
2003-02-28 07:17:47 +00:00
dnl Check version (2.0 or greater required)
AC_MSG_CHECKING([for YAZ version])
yaz_version=`echo $YAZVERSION | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
2003-02-28 07:17:47 +00:00
if test "$yaz_version" -ge 2000000; then
AC_MSG_RESULT([$YAZVERSION])
else
2003-02-28 07:17:47 +00:00
AC_MSG_ERROR([YAZ version 2.0 or later required.])
fi
for c in $YAZLIB; do
case $c in
-L*)
dir=`echo $c|cut -c 3-|sed 's%/\.libs%%g'`
PHP_ADD_LIBPATH($dir,YAZ_SHARED_LIBADD)
;;
-l*)
lib=`echo $c|cut -c 3-`
2003-02-12 03:05:28 +00:00
PHP_ADD_LIBRARY($lib,,YAZ_SHARED_LIBADD)
2002-07-11 13:02:52 +00:00
;;
esac
done
PHP_EVAL_INCLINE($YAZINC)
PHP_NEW_EXTENSION(yaz, php_yaz.c, $ext_shared)
2003-02-12 03:05:28 +00:00
PHP_SUBST(YAZ_SHARED_LIBADD)
2002-06-02 21:58:35 +00:00
else
AC_MSG_ERROR([YAZ not found (missing $yazconfig)])
2000-06-10 03:35:57 +00:00
fi
fi