diff options
author | Jay Freeman <saurik@saurik.com> | 2008-02-03 13:17:27 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-02-03 13:17:27 +0000 |
commit | 840d168b9610b171f681d3825f4820b42cf5d268 (patch) | |
tree | e8fcd303d9c173c750e650f83d378c4ab92c1117 /data/curl | |
parent | 0a4dbba6f4b011d1d6a41e267be4e218417b4dac (diff) |
Many fixes for Name, Section, and mDNSResponder.
git-svn-id: http://svn.telesphoreo.org/trunk@58 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/curl')
-rw-r--r-- | data/curl/mdns.diff | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/data/curl/mdns.diff b/data/curl/mdns.diff new file mode 100644 index 000000000..19adf83a7 --- /dev/null +++ b/data/curl/mdns.diff @@ -0,0 +1,23 @@ +diff -ru curl-7.17.1/src/main.c curl-7.17.1+iPhone/src/main.c +--- curl-7.17.1/src/main.c 2007-10-03 08:00:43.000000000 +0000 ++++ curl-7.17.1+iPhone/src/main.c 2008-02-02 14:49:46.000000000 +0000 +@@ -1,3 +1,5 @@ ++#include <mach-o/nlist.h> ++ + /*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | +@@ -4712,6 +4714,13 @@ + + int main(int argc, char *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; ++ + int res; + struct Configurable config; + |