aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authordinoex <dinoex@FreeBSD.org>2003-02-18 15:09:28 +0800
committerdinoex <dinoex@FreeBSD.org>2003-02-18 15:09:28 +0800
commitcf943d19cdd4e1ec1e3ea0f4fa19370182da6f0b (patch)
tree1237a96c69659e29186192a5548d67af1acd4b2f /security
parent35658e4e5ec2154068246e4a9ce0d383b64f93c6 (diff)
downloadfreebsd-ports-gnome-cf943d19cdd4e1ec1e3ea0f4fa19370182da6f0b.tar.gz
freebsd-ports-gnome-cf943d19cdd4e1ec1e3ea0f4fa19370182da6f0b.tar.zst
freebsd-ports-gnome-cf943d19cdd4e1ec1e3ea0f4fa19370182da6f0b.zip
- USE_OPENSSL_PORT=yes
Use the port, even if base if up to date to make life easy for stable and current users, who don't wan't to recomplie all ports after update.
Diffstat (limited to 'security')
-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