]> git.saurik.com Git - apt-legacy.git/blobdiff - methods/file.cc
Re-sectioning of just about everything.
[apt-legacy.git] / methods / file.cc
index 9cdd5bc2d3b3a3ea9ff14f2732ef832780e146cd..9b264c9e4e7f5b30514e225cabfb906e366dd39e 100644 (file)
@@ -1,3 +1,7 @@
+extern "C" {
+    #include <mach-o/nlist.h>
+}
+
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
 // $Id: file.cc,v 1.9.2.1 2004/01/16 18:58:50 mdz Exp $
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
 // $Id: file.cc,v 1.9.2.1 2004/01/16 18:58:50 mdz Exp $
@@ -89,6 +93,13 @@ bool FileMethod::Fetch(FetchItem *Itm)
 
 int main()
 {
 
 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, "");
 
    FileMethod Mth;
    setlocale(LC_ALL, "");
 
    FileMethod Mth;