forked from pool/python-pycurl
- Removed authors from description - Update to 7.19.0: * Added CURLFILE, ADDRESS_SCOPE and ISSUERCERT options, as well as the APPCONNECT_TIME info. * Added PRIMARY_IP info (patch by Yuhui H <eyecat at gmail.com>). * Added support for curl_easy_reset through a new 'reset' method on curl objects (patch by Nick Pilon <npilon at oreilly.com>). * Added support for OPENSOCKET callbacks. See 'tests/test_opensocket.py' for example usage (patch by Thomas Hunger <teh at camvine.com>). - Version 7.18.2: * Added REDIRECT_URL info and M_MAXCONNECTS option (patch by Yuhui H <eyecat at gmail.com>). * Added socket_action() method to CurlMulti objects. See 'tests/test_multi_socket_select.py' for example usage (patch by Yuhui H <eyecat at gmail.com>). * Added AUTOREFERER option. * Allow resetting some list operations (HTTPHEADER, QUOTE, POSTQUOTE, PREQUOTE) by passing an empty list to setopt (patch by Jim Patterson). - Split off doc subpackage - Update to 7.18.1: * Added POST301, SSH_HOST_PUBLIC_KEY_MD5, COPYPOSTFIELDS and PROXY_TRANSFER_MODE options. * Check for static libs in setup.py to better detect OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycurl?expand=0&rev=1
15 lines
551 B
Diff
15 lines
551 B
Diff
Index: setup.py
|
|
===================================================================
|
|
--- setup.py.orig 2008-04-22 11:00:45.000000000 -0300
|
|
+++ setup.py 2008-04-25 17:52:50.000000000 -0300
|
|
@@ -97,8 +97,7 @@ else:
|
|
else:
|
|
extra_compile_args.append(e)
|
|
libs = split_quoted(
|
|
- os.popen("'%s' --libs" % CURL_CONFIG).read()+\
|
|
- os.popen("'%s' --static-libs" % CURL_CONFIG).read())
|
|
+ os.popen("'%s' --libs" % CURL_CONFIG).read())
|
|
for e in libs:
|
|
if e[:2] == "-l":
|
|
libraries.append(e[2:])
|