diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-11-18 22:29:38 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-11-18 22:29:38 +0000 |
commit | 849ac4847d549f97f63694bb3d66025effeed26d (patch) | |
tree | cb0966ad83019ae65aaa71c6ba2cda007bffe287 /www/mod_php5/scripts | |
parent | Update to 1.1.1. Make it NOPORDOCS-compliant. (diff) |
Add support for domxml.
PR: ports/28948, ports/29565
Diffstat (limited to 'www/mod_php5/scripts')
-rw-r--r-- | www/mod_php5/scripts/configure.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 9794fc392946..52be19c9f88d 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -35,6 +35,7 @@ OpenSSL "OpenSSL support" OFF \ SNMP "SNMP support" OFF \ XML "XML support" OFF \ XSLT "Sablotron support (implies XML and iconv)" OFF \ +DOMXML "DOM support" OFF \ FTP "File Transfer Protocol support" OFF \ CURL "CURL support" OFF \ gettext "gettext library support" OFF \ @@ -212,6 +213,10 @@ while [ "$1" ]; do set $* \"iconv\" fi ;; + \"DOMXML\") + echo "LIB_DEPENDS+= xml2.5:\${PORTSDIR}/textproc/libxml2" + echo "CONFIGURE_ARGS+=--with-dom=\${PREFIX}" + ;; \"FTP\") echo "CONFIGURE_ARGS+=--enable-ftp" ;; |