summaryrefslogtreecommitdiff
path: root/security/openssl/buildlink2.mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-02-05 06:58:02 +0000
committerjlam <jlam@pkgsrc.org>2004-02-05 06:58:02 +0000
commit07a9d8dfb209780130723eba289f41872654e7c3 (patch)
tree435c664e6b88ad088b762f222d98f5c10bace96c /security/openssl/buildlink2.mk
parentf3d1d8cfb0f2a3d26dc60f5cfbaa917b45790f02 (diff)
downloadpkgsrc-07a9d8dfb209780130723eba289f41872654e7c3.tar.gz
Support a new global variable:
BUILDLINK_PREFER_PKGSRC This variable determines whether or not to prefer the pkgsrc versions of software that is also present in the base system. This variable is multi-state: defined, or "yes" always prefer the pkgsrc versions not defined, or "no" only use the pkgsrc versions if needed by dependency requirements This can also take a list of packages for which to prefer the pkgsrc-installed software. The package names may be found by consulting the value added to BUILDLINK_PACKAGES in the buildlink[23].mk files for that package.
Diffstat (limited to 'security/openssl/buildlink2.mk')
-rw-r--r--security/openssl/buildlink2.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/security/openssl/buildlink2.mk b/security/openssl/buildlink2.mk
index 911f9a04771..670158b4900 100644
--- a/security/openssl/buildlink2.mk
+++ b/security/openssl/buildlink2.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink2.mk,v 1.15 2004/01/21 10:03:41 jlam Exp $
+# $NetBSD: buildlink2.mk,v 1.16 2004/02/05 06:58:03 jlam Exp $
.if !defined(OPENSSL_BUILDLINK2_MK)
OPENSSL_BUILDLINK2_MK= # defined
@@ -24,6 +24,14 @@ BUILDLINK_IS_BUILTIN.openssl= YES
. endif
.endif
+.if defined(BUILDLINK_PREFER_PKGSRC)
+. if empty(BUILDLINK_PREFER_PKGSRC) || \
+ !empty(BUILDLINK_PREFER_PKGSRC:M[yY][eE][sS]) || \
+ !empty(BUILDLINK_PREFER_PKGSRC:Mopenssl)
+_NEED_OPENSSL= YES
+. endif
+.endif
+
.if !empty(BUILDLINK_CHECK_BUILTIN.openssl:M[yY][eE][sS])
_NEED_OPENSSL= NO
.else