summaryrefslogtreecommitdiff
path: root/sdk
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2024-01-04 09:19:34 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2024-01-04 09:19:34 +0000
commit055069f60b6ac656faa635a07367f17448d2487d (patch)
tree0b6464802771586c652ff661987f4cea15ecb864 /sdk
parent2b0862ff33ff3eace5c14b31d391f951a4fbd708 (diff)
downloadtoolchains-055069f60b6ac656faa635a07367f17448d2487d.tar.gz
toolchains-055069f60b6ac656faa635a07367f17448d2487d.tar.bz2
ppc-amigaos: Remove patch which prevents DNS resolution on newer OS4.1 beta
Diffstat (limited to 'sdk')
-rw-r--r--sdk/recipes/patches/libcurl/ppc-amigaos/lib.amigaos.c.p21
1 files changed, 0 insertions, 21 deletions
diff --git a/sdk/recipes/patches/libcurl/ppc-amigaos/lib.amigaos.c.p b/sdk/recipes/patches/libcurl/ppc-amigaos/lib.amigaos.c.p
index 1c3293b..384bcd5 100644
--- a/sdk/recipes/patches/libcurl/ppc-amigaos/lib.amigaos.c.p
+++ b/sdk/recipes/patches/libcurl/ppc-amigaos/lib.amigaos.c.p
@@ -10,24 +10,3 @@
TAG_DONE);
if(enabled) {
-@@ -132,20 +134,6 @@
- struct SocketIFace *ISocket = __CurlISocket;
-
- if(SocketFeatures & HAVE_BSDSOCKET_GETHOSTBYNAME_R) {
-- LONG h_errnop = 0;
-- struct hostent *buf;
--
-- buf = calloc(1, CURL_HOSTENT_SIZE);
-- if(buf) {
-- h = gethostbyname_r((STRPTR)hostname, buf,
-- (char *)buf + sizeof(struct hostent),
-- CURL_HOSTENT_SIZE - sizeof(struct hostent),
-- &h_errnop);
-- if(h) {
-- ai = Curl_he2ai(h, port);
-- }
-- free(buf);
-- }
- }
- else {
- #ifdef CURLRES_THREADED