-
Mail to the list from Johansen: http://curl.haxx.se/mail/curlpython-2009-03/0001.html
And his proposed fix: http://curl.haxx.se/mail/curlpython-2009-04/0003.html
The attached patch corrects this issue and adds a test case for reset(). This patch also addresses issue #2812016, which documents build issues on some platforms (https://sourceforge.net/tracker/?func=detail&aid=2812016&group_id.
2009-11-07 01:19:21 UTC by dbprice1
-
bagder added jim_patterson to the PycURL project.
2009-11-06 22:32:37 UTC by bagder
-
The right answer is likely to run the two curl-config commands and to gracefully handle the case where one or the other subcommands (but not both) fails....
2009-11-06 19:40:14 UTC by dbprice1
-
bagder added dbprice1 to the PycURL project.
2009-11-06 19:26:15 UTC by bagder
-
kjetilja added bagder to the PycURL project.
2009-11-03 09:20:29 UTC by kjetilja
-
kjetilja added badger to the PycURL project.
2009-11-03 09:19:39 UTC by kjetilja
-
Thank you for the help. It works. Is this ok to commit for future versions to work correctly?.
2009-07-01 07:46:08 UTC by friedelwolff
-
When curl is built on Linux there's a high probability that "curl-config --libs" will return only "-lcurl", since that library will be built so it depends on all the things it needs to depend on. setup.py tries to read this output and make decisions on the kind of ssl support curl is built with, based on what libraries you should link with, but since the dependencies are hidden, we don't...
2009-06-29 21:28:38 UTC by mwichmann
-
I've run across this too, and looking at a couple of Linux distributions I see they apply a simple patch to avoid this. Seems the curl-config command may not actually support the --static-libs option in some (all?) cases.
so just fixup your setup.py around line 98 so it just does the --libs call and ends there.
2009-06-29 20:53:08 UTC by mwichmann
-
I get an error with python setup.py install on OpenSolaris 0906
It seems that curl-config does not have a --static-libs option here. It continues and puts installs the broken extension, even though it didn't build successfully.
building 'pycurl' extension
/usr/lib/python2.4/pycc -G build/temp.solaris-2.11-i86pc-2.4/src/pycurl.o -L/usr/lib -L/usr/sfw/lib -lc -lcurl -lgss -lidn -lsocket...
2009-06-25 08:43:54 UTC by friedelwolff