diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-11-11 09:54:07 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-11-11 09:54:07 +0000 |
commit | 7230fe1648831a17165201b6f02e0365f7b5f938 (patch) | |
tree | a09284b7e99839a3daf49e58b140dc604904f91f /tmux.c | |
parent | 60869fa4c37815b1fd020cbe730ae457d105a0e0 (diff) | |
download | rtmux-7230fe1648831a17165201b6f02e0365f7b5f938.tar.gz rtmux-7230fe1648831a17165201b6f02e0365f7b5f938.tar.bz2 rtmux-7230fe1648831a17165201b6f02e0365f7b5f938.zip |
OS X is still broken, so ask libevent not to use kqueue or poll.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.187 2009-11-10 23:34:03 tcunha Exp $ */ +/* $Id: tmux.c,v 1.188 2009-11-11 09:54:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -488,7 +488,21 @@ main(int argc, char **argv) exit(1); xfree(path); +#ifdef HAVE_BROKEN_KQUEUE + if (setenv("EVENT_NOKQUEUE", "1", 1) != 0) + fatal("setenv failed"); +#endif +#ifdef HAVE_BROKEN_POLL + if (setenv("EVENT_NOPOLL", "1", 1) != 0) + fatal("setenv failed"); +#endif event_init(); +#ifdef HAVE_BROKEN_KQUEUE + unsetenv("EVENT_NOKQUEUE"); +#endif +#ifdef HAVE_BROKEN_POLL + unsetenv("EVENT_NOPOLL"); +#endif imsg_compose(main_ibuf, msg, PROTOCOL_VERSION, -1, -1, buf, len); |