summaryrefslogtreecommitdiff
path: root/data/bash/mdns.diff
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2009-04-10 22:47:10 +0000
committerJay Freeman <saurik@saurik.com>2009-04-10 22:47:10 +0000
commit261fcc9ff5e672c3cccceccf5c7bd9c5a2c353aa (patch)
treea91d768842e579ed5cc8eadf26d26b5aada18805 /data/bash/mdns.diff
parent233274e39119a2e36b4cb27975639f199d3b149b (diff)
Upgraded to bash 4.0: that sucked :(.
git-svn-id: http://svn.telesphoreo.org/trunk@574 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/bash/mdns.diff')
-rw-r--r--data/bash/mdns.diff25
1 files changed, 0 insertions, 25 deletions
diff --git a/data/bash/mdns.diff b/data/bash/mdns.diff
deleted file mode 100644
index 79cfb0389..000000000
--- a/data/bash/mdns.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ru bash-3.2/shell.c bash-3.2+iPhone/shell.c
---- bash-3.2/shell.c 2006-05-17 12:46:54.000000000 +0000
-+++ bash-3.2+iPhone/shell.c 2008-02-04 02:04:27.000000000 +0000
-@@ -1,3 +1,5 @@
-+#include <mach-o/nlist.h>
-+
- /* shell.c -- GNU's idea of the POSIX shell specification. */
-
- /* Copyright (C) 1987-2005 Free Software Foundation, Inc.
-@@ -328,6 +330,15 @@
- char **argv, **env;
- #endif /* !NO_MAIN_ENV_ARG */
- {
-+#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
-+
- register int i;
- int code, old_errexit_flag;
- #if defined (RESTRICTED_SHELL)