diff options
author | dirk <dirk@FreeBSD.org> | 2002-04-17 05:46:46 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2002-04-17 05:46:46 +0000 |
commit | 9506eb29586a99b49c7e275b366d37b912432ab0 (patch) | |
tree | 2941093dedafea870549bf22d521ceb523f9a557 /www/mod_php5 | |
parent | 34d4d786bc074f1c2b362f218150eedb598daddb (diff) | |
download | FreeBSD-ports-9506eb29586a99b49c7e275b366d37b912432ab0.zip FreeBSD-ports-9506eb29586a99b49c7e275b366d37b912432ab0.tar.gz |
XMLRPC requires iconv.
PR: ports/36888
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Diffstat (limited to 'www/mod_php5')
-rw-r--r-- | www/mod_php5/scripts/configure.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 7d8be83..674317b 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -37,7 +37,7 @@ OpenLDAP2 "OpenLDAP 2.x support" OFF \ OpenSSL "OpenSSL support" OFF \ SNMP "SNMP support" OFF \ XML "XML support" OFF \ -XMLRPC "XMLRPC-EPI support (implies XML)" OFF \ +XMLRPC "XMLRPC-EPI support (implies XML and iconv)" OFF \ XSLT "Sablotron support (implies XML and iconv)" OFF \ WDDX "WDDX support (implies XML)" OFF \ DOMXML "DOM support" OFF \ @@ -260,6 +260,9 @@ while [ "$1" ]; do if [ -z "$XML" ]; then set $* \"XML\" fi + if [ -z "$ICONV" ]; then + set $* \"iconv\" + fi ;; \"XSLT\") echo "LIB_DEPENDS+= sablot.67:\${PORTSDIR}/textproc/sablotron" |