You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite configure claiming it has found libexpat and libcurl, they don't end up actually linked to libafflib unless I manually add -L/usr/lib -lcurl -lexpat to LDFLAGS.
When libafflib is not linked to libexpat, you get the error
ImportError: dlopen(/usr/local/Cellar/afflib/3.7.11/lib/python2.7/site-packages/pyaff.so, 2): Symbol not found: _XML_ErrorString
Referenced from: /usr/local/Cellar/afflib/3.7.11/lib/libafflib.0.dylib
Expected in: flat namespace
in /usr/local/Cellar/afflib/3.7.11/lib/libafflib.0.dylib
When libafflib is not linked to libcurl, you get the error
>>> import pyaff
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dlopen(/usr/local/lib/python2.7/site-packages/pyaff.so, 2): Symbol not found: _curl_easy_cleanup
Referenced from: /usr/local/Cellar/afflib/3.7.11/lib/libafflib.0.dylib
Expected in: flat namespace
in /usr/local/Cellar/afflib/3.7.11/lib/libafflib.0.dylib
The text was updated successfully, but these errors were encountered:
Despite configure claiming it has found libexpat and libcurl, they don't end up actually linked to libafflib unless I manually add
-L/usr/lib -lcurl -lexpat
toLDFLAGS
.When libafflib is not linked to libexpat, you get the error
When libafflib is not linked to libcurl, you get the error
The text was updated successfully, but these errors were encountered: