diff options
author | dirk <dirk@FreeBSD.org> | 2001-04-11 22:49:42 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-04-11 22:49:42 +0000 |
commit | 79c4da9314ef9b043061aa9bf6727fe1bab446c5 (patch) | |
tree | 5573639a4a26fe02fbc874922856fd692f784c98 /www | |
parent | e3da4878ad7fc6cd28e53fbbb786bc828db2a478 (diff) | |
download | FreeBSD-ports-79c4da9314ef9b043061aa9bf6727fe1bab446c5.zip FreeBSD-ports-79c4da9314ef9b043061aa9bf6727fe1bab446c5.tar.gz |
Add option for OpenSSL support.
Submitted by: nsayer
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 335b731..a5d1ef1 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 335b731..a5d1ef1 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" |