diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2002-03-13 20:18:22 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2002-03-13 20:18:22 +0000 |
commit | 1ac9f63f670b92d8f7606f49f2797be39bd0860d (patch) | |
tree | 575a593fa470da8b2db4d104bbf311b44c4da804 /www/mod_php4 | |
parent | Upgrade to 0.06 (diff) |
Add YAZ support (optional, off by default).
MAINTAINER timeout.
Notes
Notes:
svn path=/head/; revision=56025
Diffstat (limited to 'www/mod_php4')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 98c34a56224e..cb0375a9796c 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -53,6 +53,7 @@ sockets "sockets support" OFF \ sysvsem "System V semaphore support" OFF \ sysvshm "System V shared memory support" OFF \ transsid "Transparent session id" OFF \ +yaz "YAZ support (ANSI/NISO Z39.50)" OFF \ 2> $tempfile retval=$? @@ -297,6 +298,10 @@ EOF \"transsid\") echo "CONFIGURE_ARGS+=--enable-trans-sid" ;; + \"yaz\") + echo "LIB_DEPENDS+= yaz.1:\${PORTSDIR}/net/yaz" + echo "CONFIGURE_ARGS+=--with-yaz=\${LOCALBASE}/bin" + ;; *) echo "Invalid option(s): $*" > /dev/stderr rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc |