summaryrefslogtreecommitdiff
path: root/data/bitchx/mdns.diff
blob: 12a95e9f896392b9e3aa7c6c395a6fb4645725f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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,15 @@
 
 int main(int argc, char *argv[], char *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
+
 	srand((unsigned)time(NULL));
 	time(&start_time);
 	time(&idle_time);