summaryrefslogtreecommitdiff
path: root/data/ruby/mdns.diff
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2010-08-07 23:45:23 +0000
committerJay Freeman <saurik@saurik.com>2010-08-07 23:45:23 +0000
commit0569a17e5feef654b7769929510a379309634267 (patch)
tree018d6e97ad48c85bf22b994600edb86c791e773e /data/ruby/mdns.diff
parentc00dc40b6bca37765e2fb105cd0564e20b975238 (diff)
Upgrade to Ruby 1.9.1.
git-svn-id: http://svn.telesphoreo.org/trunk@724 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/ruby/mdns.diff')
-rw-r--r--data/ruby/mdns.diff25
1 files changed, 0 insertions, 25 deletions
diff --git a/data/ruby/mdns.diff b/data/ruby/mdns.diff
deleted file mode 100644
index 678511f41..000000000
--- a/data/ruby/mdns.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ru ruby-1.8.6-p111/main.c ruby-1.8.6-p111+iPhone/main.c
---- ruby-1.8.6-p111/main.c 2007-02-12 23:01:19.000000000 +0000
-+++ ruby-1.8.6-p111+iPhone/main.c 2008-01-31 08:08:03.000000000 +0000
-@@ -1,3 +1,5 @@
-+#include <mach-o/nlist.h>
-+
- /**********************************************************************
-
- main.c -
-@@ -34,6 +36,15 @@
- int argc;
- char **argv, **envp;
- {
-+#if !defined(__ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__) || __ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__ < 10200
-+ struct nlist nl[2];
-+ memset(nl, 0, sizeof(nl));
-+ nl[0].n_un.n_name = (char *) "_useMDNSResponder";
-+ nlist("/usr/lib/libc.dylib", nl);
-+ if (nl[0].n_type != N_UNDF)
-+ *(int *) nl[0].n_value = 0;
-+#endif
-+
- #ifdef _WIN32
- NtInitialize(&argc, &argv);
- #endif