diff options
author | wiz <wiz@pkgsrc.org> | 2010-08-18 11:20:55 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2010-08-18 11:20:55 +0000 |
commit | 6255d7ef3a8c6d09caaf3f371701ed11928207e9 (patch) | |
tree | ba088c28e07a78e12bc5313df6fee261cee1cc07 /security | |
parent | 0f7c567d5b47e80a4958f4d48c01e9cd6817d194 (diff) | |
download | pkgsrc-6255d7ef3a8c6d09caaf3f371701ed11928207e9.tar.gz |
Recognize 64 bit DragonFly systems correctly. From Damian Lubosch
in PR 43774.
Diffstat (limited to 'security')
-rw-r--r-- | security/openssl/distinfo | 4 | ||||
-rw-r--r-- | security/openssl/patches/patch-aa | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/security/openssl/distinfo b/security/openssl/distinfo index d4441579936..bd40254d7ff 100644 --- a/security/openssl/distinfo +++ b/security/openssl/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.75 2010/06/02 13:30:11 taca Exp $ +$NetBSD: distinfo,v 1.76 2010/08/18 11:20:55 wiz Exp $ SHA1 (openssl-0.9.8o.tar.gz) = 80c73afc7dca790cd26936cb392a4dfd14d4e4d7 RMD160 (openssl-0.9.8o.tar.gz) = c2e455a17bce59c8a54522ffaa26c3a5cb26b510 Size (openssl-0.9.8o.tar.gz) = 3772542 bytes -SHA1 (patch-aa) = b3899aebeea9bd9ead58771ca52ecec049589a55 +SHA1 (patch-aa) = eb25505e8a745eb5ba85f857b0f9302fd5e9bda1 SHA1 (patch-ac) = 6ff4a20440666f5c520837e10547091e1bee2208 SHA1 (patch-ad) = bb86ac463fc4ab8b485df5f1a4fb9c13c1fc41c3 SHA1 (patch-ae) = 7a58f1765a3761321dcc8dafc5fe2e33207be480 diff --git a/security/openssl/patches/patch-aa b/security/openssl/patches/patch-aa index ee2d37d0258..41e46f5453f 100644 --- a/security/openssl/patches/patch-aa +++ b/security/openssl/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.23 2010/02/26 03:15:13 taca Exp $ +$NetBSD: patch-aa,v 1.24 2010/08/18 11:20:56 wiz Exp $ ---- config.orig 2009-10-15 12:58:00.000000000 +0000 +--- config.orig 2010-03-09 17:08:24.000000000 +0000 +++ config @@ -49,6 +49,7 @@ done # First get uname entries that we use below @@ -53,8 +53,9 @@ $NetBSD: patch-aa,v 1.23 2010/02/26 03:15:13 taca Exp $ powerpc64-*-*bsd*) OUT="BSD-generic64"; options="$options -DB_ENDIAN" ;; sparc64-*-*bsd*) OUT="BSD-sparc64" ;; ia64-*-*bsd*) OUT="BSD-ia64" ;; - amd64-*-*bsd*) OUT="BSD-x86_64" ;; +- amd64-*-*bsd*) OUT="BSD-x86_64" ;; - *86*-*-*bsd*) # mimic ld behaviour when it's looking for libc... ++ amd64-*-*bsd*|x86_64-*-dragonfly*) OUT="BSD-x86_64" ;; + *86*-*-*bsd*|*-dragonfly*) # mimic ld behaviour when it's looking for libc... if [ -L /usr/lib/libc.so ]; then # [Free|Net]BSD libc=/usr/lib/libc.so |