summaryrefslogtreecommitdiff
path: root/data/wget
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-02-03 13:16:17 +0000
committerJay Freeman <saurik@saurik.com>2008-02-03 13:16:17 +0000
commit9beb6dab1d50116fa94d8534108b7054b002ca1b (patch)
tree9d79106f4e8334dabb417a4b58ebcdb45c62e121 /data/wget
parentab7949b2815ac74f043807e23e8ad7b716452de6 (diff)
Many fixes for Name, Section, and mDNSResponder.
git-svn-id: http://svn.telesphoreo.org/trunk@55 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/wget')
-rw-r--r--data/wget/make.sh5
-rw-r--r--data/wget/mdns.diff23
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;
+