diff options
-rw-r--r-- | www/mod_php3/scripts/configure.php | 4 | ||||
-rw-r--r-- | www/mod_php4/scripts/configure.php | 4 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 8f3e797a7bae..c9e93606622a 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -29,6 +29,7 @@ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ +FTP "PHP: File Transfer Protocol support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -152,6 +153,9 @@ while [ "$1" ]; do echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; + \"FTP\") + echo "PHP_CONF_ARGS+= --with-ftp" + ;; \"modssl\") cat << EOF PORTNAME= apache+php+mod_ssl diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 4f2b323c19f5..08fcf4265cfe 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -27,6 +27,7 @@ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ +FTP "PHP: File Transfer Protocol support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -136,6 +137,9 @@ while [ "$1" ]; do echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; + \"FTP\") + echo "PHP_CONF_ARGS+= --with-ftp" + ;; \"modssl\") cat << EOF PORTNAME= apache+php+mod_ssl diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 4f2b323c19f5..08fcf4265cfe 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -27,6 +27,7 @@ dBase "PHP: dBase database support" OFF \ OpenLDAP "PHP: OpenLDAP support" OFF \ SNMP "PHP: SNMP support" OFF \ XML "PHP: XML support" OFF \ +FTP "PHP: File Transfer Protocol support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -136,6 +137,9 @@ while [ "$1" ]; do echo "BUILD_DEPENDS+= \${PREFIX}/include/xml/xmltok.h:\${PORTSDIR}/textproc/expat" echo "PHP_CONF_ARGS+= --with-xml=\${PREFIX}" ;; + \"FTP\") + echo "PHP_CONF_ARGS+= --with-ftp" + ;; \"modssl\") cat << EOF PORTNAME= apache+php+mod_ssl |