diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-11 03:01:49 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-11 03:01:49 +0000 |
commit | 5da23d653da57b76d952936f778aa3c87200724a (patch) | |
tree | 7036b446384b4a074b587c3ae0cf12feb6b4e461 /dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch | |
parent | Fix building with OpenSSL >= 1.0.0 wrt #326879 by Diego E. Pettenò. (diff) | |
download | historical-5da23d653da57b76d952936f778aa3c87200724a.tar.gz historical-5da23d653da57b76d952936f778aa3c87200724a.tar.bz2 historical-5da23d653da57b76d952936f778aa3c87200724a.zip |
Fix building with OpenSSL >= 1.0.0 wrt #326797 by Diego E. 'FPettenò.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/pwlib/files/pwlib-1.10.10-openssl-1.patch')
-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: "); |