summaryrefslogtreecommitdiff
path: root/data/wget/mdns.diff
diff options
context:
space:
mode:
Diffstat (limited to 'data/wget/mdns.diff')
-rw-r--r--data/wget/mdns.diff23
1 files changed, 23 insertions, 0 deletions
diff --git a/data/wget/mdns.diff b/data/wget/mdns.diff
new file mode 100644
index 000000000..f268b346e
--- /dev/null
+++ b/data/wget/mdns.diff
@@ -0,0 +1,23 @@
+diff -ru wget-1.9.1/src/main.c wget-1.9.1+iPhone/src/main.c
+--- wget-1.9.1/src/main.c 2003-10-11 13:57:11.000000000 +0000
++++ wget-1.9.1+iPhone/src/main.c 2008-01-30 17:24:39.000000000 +0000
+@@ -1,3 +1,5 @@
++#include <mach-o/nlist.h>
++
+ /* Command line parsing.
+ Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002
+ Free Software Foundation, Inc.
+@@ -267,6 +269,13 @@
+ int
+ main (int argc, char *const *argv)
+ {
++ struct nlist nl[2];
++ memset(nl, 0, sizeof(nl));
++ nl[0].n_un.n_name = "_useMDNSResponder";
++ nlist("/usr/lib/libc.dylib", nl);
++ if (nl[0].n_type != N_UNDF)
++ *(int *) nl[0].n_value = 0;
++
+ char **url, **t;
+ int i, c, nurl, status, append_to_log;
+