diff options
Diffstat (limited to 'data/irssi')
-rw-r--r-- | data/irssi/make.sh | 4 | ||||
-rw-r--r-- | data/irssi/mdns.diff | 30 |
2 files changed, 19 insertions, 15 deletions
diff --git a/data/irssi/make.sh b/data/irssi/make.sh index 5b2761c57..13355cdca 100644 --- a/data/irssi/make.sh +++ b/data/irssi/make.sh @@ -1,6 +1,4 @@ -pkg:extract -cd * -pkg:patch +pkg:setup pkg:autoconf pkg:configure --enable-static make diff --git a/data/irssi/mdns.diff b/data/irssi/mdns.diff index 3afc026e1..50478e973 100644 --- a/data/irssi/mdns.diff +++ b/data/irssi/mdns.diff @@ -7,15 +7,18 @@ diff -ru irssi-0.8.12/src/fe-none/irssi.c irssi-0.8.12+iPhone/src/fe-none/irssi. /* irssi.c : irssi -@@ -81,6 +83,12 @@ +@@ -81,6 +83,15 @@ int main(int argc, char **argv) { -+ struct nlist nl[2]; -+ memset(nl, 0, sizeof(nl)); -+ nl[0].n_un.n_name = (char *) "_useMDNSResponder"; -+ if (nlist("/usr/lib/libc.dylib", nl) != -1 && nl[0].n_type != N_UNDF) -+ *(int *) nl[0].n_value = 0; ++#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 + static struct poptOption options[] = { POPT_AUTOHELP @@ -29,15 +32,18 @@ diff -ru irssi-0.8.12/src/fe-text/irssi.c irssi-0.8.12+iPhone/src/fe-text/irssi. /* irssi.c : irssi -@@ -328,6 +330,12 @@ +@@ -328,6 +330,15 @@ int main(int argc, char **argv) { -+ struct nlist nl[2]; -+ memset(nl, 0, sizeof(nl)); -+ nl[0].n_un.n_name = (char *) "_useMDNSResponder"; -+ if (nlist("/usr/lib/libc.dylib", nl) != -1 && nl[0].n_type != N_UNDF) -+ *(int *) nl[0].n_value = 0; ++#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 + static int version = 0; static struct poptOption options[] = { |