diff options
author | obache <obache@pkgsrc.org> | 2014-04-27 01:57:51 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-04-27 01:57:51 +0000 |
commit | 630c688d2578369e92ddd0119d59d2ec2afbdb5c (patch) | |
tree | 303c3b4e8c6cc5d8e2e5cef4d481a6b0a1c05d01 /security/openssl | |
parent | 8e1fce2239926e293b335a95009d0ece5ec2c822 (diff) | |
download | pkgsrc-630c688d2578369e92ddd0119d59d2ec2afbdb5c.tar.gz |
Remove BUILTIN_PKG.openssl masquerade for NetBSD.
We need buitin version to check suficient API, not for security fix.
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/builtin.mk | 45 |
1 files changed, 1 insertions, 44 deletions
diff --git a/security/openssl/builtin.mk b/security/openssl/builtin.mk index e0cd6f5fd8e..b18b69b72c9 100644 --- a/security/openssl/builtin.mk +++ b/security/openssl/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.38 2014/03/03 06:56:35 obache Exp $ +# $NetBSD: builtin.mk,v 1.39 2014/04/27 01:57:51 obache Exp $ BUILTIN_PKG:= openssl @@ -54,49 +54,6 @@ BUILTIN_VERSION.openssl!= \ exit 0; \ } \ ' ${H_OPENSSLV} - -. if !empty(BUILTIN_VERSION.openssl:M0\.9\.6g) && \ - empty(H_OPENSSLV:M__nonexistent__) -# -# If the native OpenSSL contains the security fixes pulled up to the -# netbsd-1-6 branch on 2003-11-07, then pretend it's openssl-0.9.6l. -# -BUILTIN_OPENSSL_HAS_20031107_FIX!= \ - ${AWK} 'BEGIN { ans = "no" } \ - /OPENSSL_HAS_20031107_FIX/ { ans = "yes" } \ - END { print ans; exit 0 } \ - ' ${H_OPENSSLV} -. if !empty(BUILTIN_OPENSSL_HAS_20031107_FIX:M[yY][eE][sS]) -BUILTIN_VERSION.openssl= 0.9.6l -. endif -# -# If the native OpenSSL contains the security fixes pulled up to the -# netbsd-1-6 branch on 2004-04-01, then pretend it's openssl-0.9.6m. -# -BUILTIN_OPENSSL_HAS_20040401_FIX!= \ - ${AWK} 'BEGIN { ans = "no" } \ - /OPENSSL_HAS_20040401_FIX/ { ans = "yes" } \ - END { print ans; exit 0 } \ - ' ${H_OPENSSLV} -. if !empty(BUILTIN_OPENSSL_HAS_20040401_FIX:M[yY][eE][sS]) -BUILTIN_VERSION.openssl= 0.9.6m -. endif -. elif !empty(BUILTIN_VERSION.openssl:M0\.9\.7d) && \ - empty(H_OPENSSLV:M__nonexistent__) -# -# If the native OpenSSL contains the security fixes pulled up to the -# netbsd-2-0, netbsd-2, and netbsd-3-0 branches on 2005-10-11, then -# pretend it's openssl-0.9.7h. -# -BUILTIN_OPENSSL_HAS_20051011_FIX!= \ - ${AWK} 'BEGIN { ans = "no" } \ - /OPENSSL_HAS_20051011_FIX/ { ans = "yes" } \ - END { print ans; exit 0 } \ - ' ${H_OPENSSLV} -. if !empty(BUILTIN_OPENSSL_HAS_20051011_FIX:M[yY][eE][sS]) -BUILTIN_VERSION.openssl= 0.9.7h -. endif -. endif BUILTIN_PKG.openssl= openssl-${BUILTIN_VERSION.openssl} .endif MAKEVARS+= BUILTIN_PKG.openssl |