diff options
author | wiz <wiz@pkgsrc.org> | 2009-07-26 09:19:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-07-26 09:19:06 +0000 |
commit | c371c77642a48fbc4ebc1880ba4d0d454734c759 (patch) | |
tree | afb4b1d30b844d19d2771fe6d80af79642f728f1 /devel | |
parent | b039254c048350b1aa02053acb3c38f502a949a3 (diff) | |
download | pkgsrc-c371c77642a48fbc4ebc1880ba4d0d454734c759.tar.gz |
ng build failure with older openssl.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ptlib/distinfo | 4 | ||||
-rw-r--r-- | devel/ptlib/patches/patch-aa | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/devel/ptlib/distinfo b/devel/ptlib/distinfo index 2baa8da7fb0..a7881a93582 100644 --- a/devel/ptlib/distinfo +++ b/devel/ptlib/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.8 2009/07/23 22:11:47 wiz Exp $ +$NetBSD: distinfo,v 1.9 2009/07/26 09:19:06 wiz Exp $ SHA1 (ptlib-2.6.4.tar.bz2) = 2808a7546c354c1b6c140667a91da6f79a98f5c9 RMD160 (ptlib-2.6.4.tar.bz2) = 53d0ea4b67438f61f86fd0d8b68959ef0aa18342 Size (ptlib-2.6.4.tar.bz2) = 3302374 bytes -SHA1 (patch-aa) = 292342da79a9e880b3383f5b7e05fbd0ed2cd02b +SHA1 (patch-aa) = f262a3d6c9e88c8f009bb459e4e423e155f6cb21 SHA1 (patch-ad) = 092d0758e9b6e46a0b481659c8d7988806f2f39a diff --git a/devel/ptlib/patches/patch-aa b/devel/ptlib/patches/patch-aa index 70f00be697b..26e395d9f55 100644 --- a/devel/ptlib/patches/patch-aa +++ b/devel/ptlib/patches/patch-aa @@ -1,13 +1,16 @@ -$NetBSD: patch-aa,v 1.3 2009/07/23 22:11:48 wiz Exp $ +$NetBSD: patch-aa,v 1.4 2009/07/26 09:19:06 wiz Exp $ --- src/ptclib/pssl.cxx.orig 2009-07-05 05:52:49.000000000 +0000 +++ src/ptclib/pssl.cxx -@@ -800,7 +800,7 @@ PSSLContext::PSSLContext(const void * se +@@ -800,7 +800,11 @@ PSSLContext::PSSLContext(const void * se void PSSLContext::Construct(Method method, const void * sessionId, PINDEX idSize) { // create the new SSL context -- SSL_METHOD * meth; ++#if OPENSSL_VERSION_NUMBER >= 0x00909000L + const SSL_METHOD * meth; ++#else + SSL_METHOD * meth; ++#endif switch (method) { case SSLv2: |