Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fedora 16 x64 support #11

Closed
GoogleCodeExporter opened this issue Feb 11, 2016 · 2 comments
Closed

Fedora 16 x64 support #11

GoogleCodeExporter opened this issue Feb 11, 2016 · 2 comments

Comments

@GoogleCodeExporter
Copy link

Getting

PluginCertInfo - Import Error: Could not load OpenSSL 1.0.0 or 0.9.8.
PluginOpenSSLCipherSuites - Import Error: Could not load OpenSSL 1.0.0 or 0.9.8.
PluginSessionResumption - Import Error: Could not load OpenSSL 1.0.0 or 0.9.8.
PluginSessionRenegotiation - Import Error: Could not load OpenSSL 1.0.0 or 
0.9.8.

when run on Fedora 16 x64 (probably also other Fedora versions)

The naming of the libs do not match for Fedora since they have the f at the end.
/lib64/libcrypto.so.1.0.0f
/usr/lib64/libssl.so.1.0.0f

Seem to be working when doing this (but will break others)
so Fedora will have to be identified by more than sys.platform

--- load_openssl.py 2012-01-13 10:16:30.039579016 +0100
+++ load_openssl.py 2012-01-13 10:19:52.184123497 +0100
@@ -51,8 +51,8 @@
         libssl_0_9_8 = 'ssleay32'

     elif sys.platform == 'linux2': # Any Linux
-        libcrypto_1_0_0 = 'libcrypto.so.1.0.0'
-        libssl_1_0_0 = 'libssl.so.1.0.0'
+        libcrypto_1_0_0 = 'libcrypto.so.1.0.0f'
+        libssl_1_0_0 = 'libssl.so.1.0.0f'
         libcrypto_0_9_8 = 'libcrypto.so.0.9.8'
         libssl_0_9_8 = 'libssl.so.0.9.8'

Original issue reported on code.google.com by kimfolse...@gmail.com on 13 Jan 2012 at 9:26

@GoogleCodeExporter
Copy link
Author

Thanks for the feedback.

Original comment by nabla.c...@gmail.com on 13 Jan 2012 at 7:11

  • Changed state: Accepted

@GoogleCodeExporter
Copy link
Author

This issue was closed by revision r150.

Original comment by nabla.c...@gmail.com on 16 Jan 2012 at 1:02

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant