diff options
author | dirk <dirk@FreeBSD.org> | 2001-11-19 06:29:38 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-11-19 06:29:38 +0800 |
commit | 1a3059dcd2582bdc6d85811dc9cd57376653d8a4 (patch) | |
tree | b402297d15c7cc6e2c3de7e989d7f8afe31ba369 /www/mod_php4 | |
parent | dbf560a273ebce90eb02213ee6b606a92d746623 (diff) | |
download | freebsd-ports-graphics-1a3059dcd2582bdc6d85811dc9cd57376653d8a4.tar.gz freebsd-ports-graphics-1a3059dcd2582bdc6d85811dc9cd57376653d8a4.tar.zst freebsd-ports-graphics-1a3059dcd2582bdc6d85811dc9cd57376653d8a4.zip |
Add support for domxml.
PR: ports/28948, ports/29565
Diffstat (limited to 'www/mod_php4')
-rw-r--r-- | www/mod_php4/Makefile | 2 | ||||
-rw-r--r-- | www/mod_php4/distinfo | 3 | ||||
-rw-r--r-- | www/mod_php4/scripts/configure.php | 5 |
3 files changed, 8 insertions, 2 deletions
diff --git a/www/mod_php4/Makefile b/www/mod_php4/Makefile index c9b68e1e93c..4a6911d8d02 100644 --- a/www/mod_php4/Makefile +++ b/www/mod_php4/Makefile @@ -21,7 +21,7 @@ MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \ DISTNAME= php-${PORTVERSION} PATCHFILES= patch-ext_gd_config.m4 patch-ext_gd_gd.c patch-ext_sybase_ct_config.m4 \ - patch-ext_gd_gd_2.c + patch-ext_gd_gd_2.c patch-ext_domxml_config.m4 PATCH_SITES= http://www.physik.tu-berlin.de/~ibex/ports/distfiles/ \ ${MASTER_SITE_LOCAL}/dirk/ diff --git a/www/mod_php4/distinfo b/www/mod_php4/distinfo index 70e8ef60f52..690ca2202ec 100644 --- a/www/mod_php4/distinfo +++ b/www/mod_php4/distinfo @@ -1,6 +1,7 @@ MD5 (php-4.0.6.tar.gz) = 5f698521cf2b392cf9bfa87fc1a0fe90 MD5 (php4_mbregex-1.2.1.tar.gz) = 46d151afa9ab668df880a70cf786a2c2 +MD5 (patch-ext_domxml_config.m4) = a623491aa6c019b00817633487778e4d MD5 (patch-ext_gd_config.m4) = b4fb911d11e6bb4e8e712407de7600bb MD5 (patch-ext_gd_gd.c) = f83c2a0433c744c7b7b03fe2533ed7d9 -MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b MD5 (patch-ext_gd_gd_2.c) = 0f159bbbec96c43671bd9097ff6b067e +MD5 (patch-ext_sybase_ct_config.m4) = ec731e9b05af2eb3e8ac12a0231d9a8b diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 9794fc39294..52be19c9f88 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/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" ;; |