diff options
author | dirk <dirk@FreeBSD.org> | 1999-08-26 22:09:39 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-08-26 22:09:39 +0000 |
commit | fe998eac05d533b9fdedabe4763264786675e041 (patch) | |
tree | 24653e331e0351d6094f9b78a7dac7db99c5ad54 /www/mod_php3 | |
parent | 1c65ce435d4c4d084163170adbdd9dda07738dca (diff) | |
download | FreeBSD-ports-fe998eac05d533b9fdedabe4763264786675e041.zip FreeBSD-ports-fe998eac05d533b9fdedabe4763264786675e041.tar.gz |
Add option for SNMP support (via net/ucd-snmp).
Requested by: Khaled Daham <khaled@mailbox.telia.net>
Diffstat (limited to 'www/mod_php3')
-rw-r--r-- | www/mod_php3/scripts/configure.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 28f8fd5..3627124 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -25,6 +25,7 @@ PostgreSQL "PHP: PostgreSQL database support" OFF \ mSQL "PHP: mSQL database support" OFF \ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ +SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ 2> /tmp/checklist.tmp.$$ @@ -110,6 +111,10 @@ while [ "$1" ]; do echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" ;; + \"SNMP\") + echo "LIB_DEPENDS+= snmp.3:\${PORTSDIR}/net/ucd-snmp" + echo "PHP_CONF_ARGS+= --with-snmp=\${PREFIX} --enable-ucd-snmp-hack" + ;; \"XML\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libexpat.a:\${PORTSDIR}/textproc/expat" echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmlparse.h:\${PORTSDIR}/textproc/expat" |