diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-04-11 22:49:42 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-04-11 22:49:42 +0000 |
commit | 7e140a310aec0c2852514c75484c063628ce9a6f (patch) | |
tree | 48809864377b2d7ad9eae7c5378b6b9506e95d4a /www | |
parent | 1234108a8dd4e625e15e2c9875ac60f15329b680 (diff) | |
download | ports-7e140a310aec0c2852514c75484c063628ce9a6f.tar.gz ports-7e140a310aec0c2852514c75484c063628ce9a6f.zip |
Add option for OpenSSL support.
Submitted by: nsayer
Notes
Notes:
svn path=/head/; revision=41305
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 5 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 335b731df8fb..a5d1ef18bf77 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -25,6 +25,7 @@ SybaseCT "Sybase/MS-SQL database support (CT-lib)" OFF \ Interbase "Interbase 6 database support (Firebird)" OFF \ dBase "dBase database support" OFF \ OpenLDAP "OpenLDAP support" OFF \ +OpenSSL "OpenSSL support" OFF \ SNMP "SNMP support" OFF \ XML "XML support" OFF \ FTP "File Transfer Protocol support" OFF \ @@ -151,6 +152,10 @@ while [ "$1" ]; do LIBS="${LIBS} -lkrb -ldes -L\${PREFIX}/lib" fi ;; + \"OpenSSL\") + echo "USE_OPENSSL=yes" + echo "CONFIGURE_ARGS+=--with-openssl=\${OPENSSLBASE}" + ;; \"SNMP\") echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/net-snmp" echo "CONFIGURE_ARGS+=--with-snmp=\${PREFIX} --enable-ucd-snmp-hack" diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 335b731df8fb..a5d1ef18bf77 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -25,6 +25,7 @@ SybaseCT "Sybase/MS-SQL database support (CT-lib)" OFF \ Interbase "Interbase 6 database support (Firebird)" OFF \ dBase "dBase database support" OFF \ OpenLDAP "OpenLDAP support" OFF \ +OpenSSL "OpenSSL support" OFF \ SNMP "SNMP support" OFF \ XML "XML support" OFF \ FTP "File Transfer Protocol support" OFF \ @@ -151,6 +152,10 @@ while [ "$1" ]; do LIBS="${LIBS} -lkrb -ldes -L\${PREFIX}/lib" fi ;; + \"OpenSSL\") + echo "USE_OPENSSL=yes" + echo "CONFIGURE_ARGS+=--with-openssl=\${OPENSSLBASE}" + ;; \"SNMP\") echo "LIB_DEPENDS+= snmp.4:\${PORTSDIR}/net/net-snmp" echo "CONFIGURE_ARGS+=--with-snmp=\${PREFIX} --enable-ucd-snmp-hack" |