aboutsummaryrefslogtreecommitdiff
path: root/security/openssl
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-02-18 07:09:28 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-02-18 07:09:28 +0000
commit0889a929d17daec8087cdf4ec996d66f9acf6499 (patch)
tree5e5b345628f4126edcbe518238d6fb5da2f2bb37 /security/openssl
parent9a51f264e8038b95e45797c46e1e5734dbd90dcd (diff)
downloadports-0889a929d17daec8087cdf4ec996d66f9acf6499.tar.gz
ports-0889a929d17daec8087cdf4ec996d66f9acf6499.zip
Notes
Diffstat (limited to 'security/openssl')
-rw-r--r--security/openssl/Makefile.ssl9
1 files changed, 6 insertions, 3 deletions
diff --git a/security/openssl/Makefile.ssl b/security/openssl/Makefile.ssl
index 4ef4be2a3258..dd5f82e0ab7b 100644
--- a/security/openssl/Makefile.ssl
+++ b/security/openssl/Makefile.ssl
@@ -10,6 +10,7 @@
# the user/port can now set this options in the makefiles.
#
# USE_OPENSSL_BASE=yes - Use the version in the base system.
+# USE_OPENSSL_PORT=yes - Use the port, even if base if up to date
# USE_OPENSSL_BETA=yes - Use a snapshot of recent openssl
#
# The makefile sets this variables:
@@ -22,9 +23,11 @@
# LIB_DEPENDS - are added if needed
# if no preference was set, check for an up to date base version
-.if !defined(USE_OPENSSL_BASE) && !defined(USE_OPENSSL_BETA)
-# 4-STABLE is not up to date yet
-# 5-CURRENT has 0.9.7 after 2003-01-28, 500100 was bumped at 2003-01-23
+.if !defined(USE_OPENSSL_BASE) && \
+ !defined(USE_OPENSSL_BETA) && \
+ !defined(USE_OPENSSL_PORT)
+# 4.7-STABLE has 0.9.7 after 2003-02-14
+# 5.0-CURRENT has 0.9.7 after 2003-01-28, 500100 was bumped at 2003-01-23
.if exists(/usr/lib/libcrypto.so.3)
USE_OPENSSL_BASE=yes
.endif