diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-30 20:41:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-30 20:41:08 +0000 |
commit | 436f3b357ee6a960621c319b7904aeed1cccead4 (patch) | |
tree | d5ef34bc8cc43d81c3582645b61724ca2200df47 /configure | |
parent | ba89a048edeebb34f03a46b5ecc789655f7d223d (diff) | |
download | rtmux-436f3b357ee6a960621c319b7904aeed1cccead4.tar.gz rtmux-436f3b357ee6a960621c319b7904aeed1cccead4.tar.bz2 rtmux-436f3b357ee6a960621c319b7904aeed1cccead4.zip |
epoll on Linux is broken with /dev/null so it needs to be disabled.
Instead of adding another BROKEN_* define, move event_init into
osdep-*.c.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.59 2010-12-08 19:55:31 nicm Exp $ +# $Id: configure,v 1.60 2010-12-30 20:41:07 nicm Exp $ # # Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> # @@ -30,8 +30,6 @@ cat <<EOF >>$CONFIG_H #undef HAVE_ASPRINTF #undef HAVE_BROKEN_CMSG_FIRSTHDR #undef HAVE_BROKEN_CURSES_H -#undef HAVE_BROKEN_KQUEUE -#undef HAVE_BROKEN_POLL #undef HAVE_BZERO #undef HAVE_CLOSEFROM #undef HAVE_DAEMON @@ -185,8 +183,6 @@ EOF cat <<EOF >>$CONFIG_H #define HAVE_ASPRINTF #define HAVE_BROKEN_CMSG_FIRSTHDR -#define HAVE_BROKEN_KQUEUE -#define HAVE_BROKEN_POLL #define HAVE_BZERO #define HAVE_DAEMON #define HAVE_DIRFD @@ -222,7 +218,6 @@ EOF FreeBSD|DragonFly) cat <<EOF >>$CONFIG_H #define HAVE_ASPRINTF -#define HAVE_BROKEN_KQUEUE #define HAVE_BZERO #define HAVE_CLOSEFROM #define HAVE_DAEMON |