diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2000-02-25 23:29:53 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2000-02-25 23:29:53 +0000 |
commit | 4b778d257d65665026afd3138dff9a657a21d9ab (patch) | |
tree | 4acb91b047ce8f1e0e4be7b09e1cfbf46c62de8f | |
parent | 0e7b7204511d9cb542fc04c290d0ace153725ab6 (diff) | |
download | freebsd-ports-4b778d257d65665026afd3138dff9a657a21d9ab.zip |
Fix build error: RSA_BASE='SYSTEM' is not appropriate for recent openssl
changes in the base system.
Submitted by: Jim Bloom <bloom@acm.org>
-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 c27b4402076c..21a156d5fce6 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 771882f4285d..bc2508d43b1a 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 |