diff options
author | 2010-07-11 03:01:49 +0000 | |
---|---|---|
committer | 2010-07-11 03:01:49 +0000 | |
commit | 3c97a63b857220b2b667a939d9f232487212f687 (patch) | |
tree | 65c131788521dc9390861b4b2e1746b5919bead7 /dev-libs/pwlib/files | |
parent | Fix building with OpenSSL >= 1.0.0 wrt #326879 by Diego E. Pettenò. (diff) | |
download | gentoo-2-3c97a63b857220b2b667a939d9f232487212f687.tar.gz gentoo-2-3c97a63b857220b2b667a939d9f232487212f687.tar.bz2 gentoo-2-3c97a63b857220b2b667a939d9f232487212f687.zip |
Fix building with OpenSSL >= 1.0.0 wrt #326797 by Diego E. 'FPettenò.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/pwlib/files')
-rw-r--r-- | dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch b/dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch new file mode 100644 index 000000000000..170949495765 --- /dev/null +++ b/dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch @@ -0,0 +1,13 @@ +http://bugs.gentoo.org/326797 + +--- src/ptclib/pssl.cxx ++++ src/ptclib/pssl.cxx +@@ -888,7 +888,7 @@ + InitialisationMutex.Signal(); + + // create the new SSL context +- SSL_METHOD * meth = SSLv23_method(); ++ const SSL_METHOD * meth = SSLv23_method(); + context = SSL_CTX_new(meth); + if (context == NULL) + PSSLAssert("Error creating context: "); |