diff options
Diffstat (limited to 'data/wget')
-rw-r--r-- | data/wget/make.sh | 5 | ||||
-rw-r--r-- | data/wget/mdns.diff | 23 |
2 files changed, 26 insertions, 2 deletions
diff --git a/data/wget/make.sh b/data/wget/make.sh index 53926b832..1b3c1b776 100644 --- a/data/wget/make.sh +++ b/data/wget/make.sh @@ -1,5 +1,6 @@ -tar -zxvf "${PKG_DATA}/wget-1.9.1.tar.gz" -cd wget-1.9.1 +pkg:extract +cd * +pkg:patch pkg:configure make pkg:install 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; + |