Closed
Description
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'X509_EXTENSION_free'
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'X509_free'
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'OCSP_RESPID_free'
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'i2d_DHparams'
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'd2i_DHparams'
./wraith:/usr/lib/libssl.so.15.0: undefined symbol 'X509_NAME_free'
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Relationships
Development
No branches or pull requests
Activity
bdrewery commentedon Feb 20, 2012
This page summarizes it. The problem is that libssl depends on libcrypto. So libcrypto needs
RTLD_GLOBAL
passed intodlopen
so libssl can later load symbols from it.* Link libcrypto in with RTLD_GLOBAL so libssl can load symbols from …
Merge branch 'master' into next