]> git.saurik.com Git - apt-legacy.git/blobdiff - methods/copy.cc
Drastic, sweeping modifications to support iPhone 1.2.0/2.0.
[apt-legacy.git] / methods / copy.cc
index d737e3c33cb851b646d726c24f00fad053098cce..d3799dee3f72bc29d80395f86454bd691c066dcf 100644 (file)
@@ -1,3 +1,7 @@
+extern "C" {
+    #include <mach-o/nlist.h>
+}
+
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
 // $Id: copy.cc,v 1.7.2.1 2004/01/16 18:58:50 mdz Exp $
@@ -86,6 +90,13 @@ bool CopyMethod::Fetch(FetchItem *Itm)
 
 int main()
 {
+   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;
+
    setlocale(LC_ALL, "");
 
    CopyMethod Mth;