diff options
author | theuni <theuni-nospam@xbmc.org> | 2013-03-14 01:19:34 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2013-03-14 04:59:48 -0400 |
commit | df33686f13d9d2496d61a01a04377677a598835c (patch) | |
tree | 3df7514972b1d7f33e0bea06e15fca684ecb1ab2 /tools/depends/target/python26/Python-2.6.5-scproxy.patch | |
parent | 4150e9309ea90d8fa1a311c4b5482ee43fbb12f6 (diff) |
depends: python: fix urllib on darwin
Diffstat (limited to 'tools/depends/target/python26/Python-2.6.5-scproxy.patch')
-rw-r--r-- | tools/depends/target/python26/Python-2.6.5-scproxy.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/tools/depends/target/python26/Python-2.6.5-scproxy.patch b/tools/depends/target/python26/Python-2.6.5-scproxy.patch deleted file mode 100644 index 8f2974790a..0000000000 --- a/tools/depends/target/python26/Python-2.6.5-scproxy.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- Mac/Modules/_scproxy.c 2009-09-20 15:21:24.000000000 -0400 -+++ Mac/Modules/_scproxy.c 2013-01-22 19:40:41.000000000 -0500 -@@ -4,7 +4,6 @@ - */ - #include <Python.h> - #include <SystemConfiguration/SystemConfiguration.h> -- - static int32_t - cfnum_to_int32(CFNumberRef num) - { -@@ -48,6 +47,7 @@ - static PyObject* - get_proxy_settings(PyObject* mod __attribute__((__unused__))) - { -+/* - CFDictionaryRef proxyDict = NULL; - CFNumberRef aNum = NULL; - CFArrayRef anArray = NULL; -@@ -55,7 +55,7 @@ - PyObject* v; - int r; - -- proxyDict = SCDynamicStoreCopyProxies(NULL); -+ proxyDict = CFNetworkCopyProxiesForURL(NULL); - if (!proxyDict) { - Py_INCREF(Py_None); - return Py_None; -@@ -114,6 +114,7 @@ - error: - if (proxyDict) CFRelease(proxyDict); - Py_XDECREF(result); -+*/ - return NULL; - } - -@@ -163,6 +164,7 @@ - static PyObject* - get_proxies(PyObject* mod __attribute__((__unused__))) - { -+/* - PyObject* result = NULL; - int r; - CFDictionaryRef proxyDict = NULL; -@@ -201,6 +203,7 @@ - error: - if (proxyDict) CFRelease(proxyDict); - Py_XDECREF(result); -+*/ - return NULL; - } - |