diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-22 12:18:11 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-22 12:18:11 +0100 |
commit | d4826aa1aae9b5a3efe6764f87d9c9b897f4723e (patch) | |
tree | f9d841940a58ba7a022c72a98e4724fd5d29cc63 | |
parent | df1bce40f0863b024cbd6d8ad56fd3a8914e68ed (diff) | |
download | rtmux-d4826aa1aae9b5a3efe6764f87d9c9b897f4723e.tar.gz rtmux-d4826aa1aae9b5a3efe6764f87d9c9b897f4723e.tar.bz2 rtmux-d4826aa1aae9b5a3efe6764f87d9c9b897f4723e.zip |
Nope, OS X kqueue is still broken...
This reverts commit 94c90385d2e728a4d37a25ce78b55b2ffeb429f9.
-rw-r--r-- | osdep-darwin.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/osdep-darwin.c b/osdep-darwin.c index 6d1bfb72..6b2b1d72 100644 --- a/osdep-darwin.c +++ b/osdep-darwin.c @@ -93,19 +93,15 @@ osdep_event_init(void) { struct event_base *base; -#ifndef __MAC_10_7 /* * On OS X, kqueue and poll are both completely broken and don't * work on anything except socket file descriptors (yes, really). */ setenv("EVENT_NOKQUEUE", "1", 1); setenv("EVENT_NOPOLL", "1", 1); -#endif base = event_init(); -#ifndef __MAC_10_7 unsetenv("EVENT_NOKQUEUE"); unsetenv("EVENT_NOPOLL"); -#endif return (base); } |