summaryrefslogtreecommitdiff
path: root/data/bitchx/mdns.diff
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-03-05 23:40:19 +0000
committerJay Freeman <saurik@saurik.com>2008-03-05 23:40:19 +0000
commit7def74ccf0d9bacc8be063da4966477f6602589f (patch)
tree8df105657902f1258b0e804310fe14fa54609fdc /data/bitchx/mdns.diff
parent2b2eba3d88799c17ed7fd72f5964eae044086535 (diff)
Added BitchX for Morphis.
git-svn-id: http://svn.telesphoreo.org/trunk@156 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/bitchx/mdns.diff')
-rw-r--r--data/bitchx/mdns.diff23
1 files changed, 23 insertions, 0 deletions
diff --git a/data/bitchx/mdns.diff b/data/bitchx/mdns.diff
new file mode 100644
index 000000000..3c67811a4
--- /dev/null
+++ b/data/bitchx/mdns.diff
@@ -0,0 +1,23 @@
+diff -ru BitchX/source/irc.c BitchX+iPhone/source/irc.c
+--- BitchX/source/irc.c 2004-03-26 06:15:57.000000000 +0000
++++ BitchX+iPhone/source/irc.c 2008-03-05 23:33:00.000000000 +0000
+@@ -1,3 +1,5 @@
++#include <mach-o/nlist.h>
++
+ /*
+ * ircII: a new irc client. I like it. I hope you will too!
+ *
+@@ -1464,6 +1466,13 @@
+
+ int main(int argc, char *argv[], char *envp[])
+ {
++ 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;
++
+ srand((unsigned)time(NULL));
+ time(&start_time);
+ time(&idle_time);