diff options
author | dirk <dirk@FreeBSD.org> | 2000-02-25 23:29:53 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2000-02-25 23:29:53 +0000 |
commit | 7068928343e29befb557c54e94313a055ae326e9 (patch) | |
tree | 9d2f1afdb4c6ab9ebf657624433d8d503183dc4d /www | |
parent | a711a3b5b333dbdddde5e9f4b4b625630d010ad9 (diff) | |
download | FreeBSD-ports-7068928343e29befb557c54e94313a055ae326e9.zip FreeBSD-ports-7068928343e29befb557c54e94313a055ae326e9.tar.gz |
Fix build error: RSA_BASE='SYSTEM' is not appropriate for recent openssl
changes in the base system.
Submitted by: Jim Bloom <bloom@acm.org>
Diffstat (limited to 'www')
-rw-r--r-- | www/apache13-modssl/Makefile | 1 | ||||
-rw-r--r-- | www/mod_php3/scripts/configure.php | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/www/apache13-modssl/Makefile b/www/apache13-modssl/Makefile index c27b440..21a156d 100644 --- a/www/apache13-modssl/Makefile +++ b/www/apache13-modssl/Makefile @@ -90,7 +90,6 @@ CFLAGS+= -O6 -funroll-loops -fstrength-reduce -fomit-frame-pointer \ CONFIGURE_ENV= CFLAGS='${CFLAGS}' \ OPTIM='${OPTIM}' \ SSL_BASE='SYSTEM' \ - RSA_BASE='SYSTEM' \ EAPI_MM='SYSTEM' \ PATH="${PREFIX}/bin:${PATH}" diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 771882f..bc2508d 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -138,7 +138,7 @@ VERSION_MODSSL= 2.5.0 CONFIGURE_ARGS+=--enable-module=ssl \\ --enable-module=define -CONFIGURE_ENV+= SSL_BASE='SYSTEM' RSA_BASE='SYSTEM' EAPI_MM='SYSTEM' PATH="\${PREFIX}/bin:\${PATH}" +CONFIGURE_ENV+= SSL_BASE='SYSTEM' EAPI_MM='SYSTEM' PATH="\${PREFIX}/bin:\${PATH}" EXTRA_PATCHES+= \${PATCHDIR}/ssl_patch-aa |