Also don't use poll() on MacOS/X.
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 15 Nov 2012 10:24:18 +0000 (11:24 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 15 Nov 2012 10:24:18 +0000 (11:24 +0100)
src/tincd.c

index 28f30a5..be13164 100644 (file)
@@ -451,7 +451,10 @@ int main2(int argc, char **argv) {
 #endif
 
 #ifdef HAVE_DARWIN
-       setenv("EVENT_NOKQUEUE", "1", 0);
+       if(!getenv("EVENT_KQUEUE"))
+               setenv("EVENT_NOKQUEUE", "1", 0);
+       if(!getenv("EVENT_POLL"))
+               setenv("EVENT_NOPOLL", "1", 0);
 #endif
 
        if(!event_init()) {