diff options
author | dirk <dirk@FreeBSD.org> | 2001-11-18 22:35:30 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-11-18 22:35:30 +0000 |
commit | e6f5ad38908905f47e17bdcd944dbb121cc55535 (patch) | |
tree | d59870f1c904341811e794d32920955d30f51dd4 /www/mod_php4 | |
parent | 1a3059dcd2582bdc6d85811dc9cd57376653d8a4 (diff) | |
download | FreeBSD-ports-e6f5ad38908905f47e17bdcd944dbb121cc55535.zip FreeBSD-ports-e6f5ad38908905f47e17bdcd944dbb121cc55535.tar.gz |
Add IMAP-SSL support.
PR: ports/28948
Submitted by: Richard Stockley <rws@procopia.com>
Diffstat (limited to 'www/mod_php4')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 52be19c..42f6a19 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -23,6 +23,7 @@ mcrypt "Encryption support" OFF \ mhash "Crypto-hashing support" OFF \ pdflib "pdflib support" OFF \ IMAP "IMAP support" OFF \ +IMAP-SSL "IMAP-SSL support (implies IMAP)" OFF \ MySQL "MySQL database support" ON \ PostgreSQL "PostgreSQL database support" OFF \ SybaseDB "Sybase/MS-SQL database support (DB-lib)" OFF \ @@ -113,6 +114,12 @@ while [ "$1" ]; do echo "LIB_DEPENDS+= c-client4.8:\${PORTSDIR}/mail/cclient" echo "CONFIGURE_ARGS+=--with-imap=\${PREFIX}" ;; + \"IMAP-SSL\") + echo "CONFIGURE_ARGS+=--with-imap-ssl=\${PREFIX}" + if [ -z "$IMAP" ]; then + set $* \"IMAP\" + fi + ;; \"MySQL\") echo "LIB_DEPENDS+= mysqlclient.10:\${PORTSDIR}/databases/mysql323-client" echo "CONFIGURE_ARGS+=--with-mysql=\${PREFIX}" |