]> git.saurik.com Git - apt-legacy.git/blobdiff - methods/rred.cc
Fixed some dependencies, removed mDNS fix for 2.0, and factored for multi-arch support.
[apt-legacy.git] / methods / rred.cc
index 6fa57f3a60f58263da407f706ca31f9601a2aba3..8171a9203cdcfd92f5ad2b2cd3e0cc5d80ac94d9 100644 (file)
@@ -1,3 +1,7 @@
+extern "C" {
+    #include <mach-o/nlist.h>
+}
+
 #include <apt-pkg/fileutl.h>
 #include <apt-pkg/error.h>
 #include <apt-pkg/acquire-method.h>
@@ -253,6 +257,15 @@ bool RredMethod::Fetch(FetchItem *Itm)
 
 int main(int argc, char *argv[])
 {
+#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
+
    RredMethod Mth;
 
    Prog = strrchr(argv[0],'/');