diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | ev.3 | 2 | ||||
-rw-r--r-- | ev.h | 2 | ||||
-rw-r--r-- | ev_select.c | 1 | ||||
-rw-r--r-- | event.c | 2 |
6 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,6 @@ Revision history for libev, a high-performance and full-featured event loop. +3.52 Wed Jan 7 21:43:02 CET 2009 - fix compilation of select backend in fd_set mode when NFDBITS is missing (to get it to compile on QNX, reported by Rodrigo Campos). - better select-nfds handling when select backend is in fd_set mode. diff --git a/configure.ac b/configure.ac index d0ee7e2..9ca3759 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_INIT AC_CONFIG_SRCDIR([ev_epoll.c]) -AM_INIT_AUTOMAKE(libev,3.51) +AM_INIT_AUTOMAKE(libev,3.52) AC_CONFIG_HEADERS([config.h]) AM_MAINTAINER_MODE @@ -132,7 +132,7 @@ .\" ======================================================================== .\" .IX Title "LIBEV 3" -.TH LIBEV 3 "2008-12-14" "libev-3.51" "libev - high performance full featured event loop" +.TH LIBEV 3 "2008-12-14" "libev-3.52" "libev - high performance full featured event loop" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -1,7 +1,7 @@ /* * libev native API header * - * Copyright (c) 2007,2008 Marc Alexander Lehmann <libev@schmorp.de> + * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libev@schmorp.de> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modifica- diff --git a/ev_select.c b/ev_select.c index 1b54ea7..173c286 100644 --- a/ev_select.c +++ b/ev_select.c @@ -72,6 +72,7 @@ select_modify (EV_P_ int fd, int oev, int nev) { #if EV_SELECT_USE_FD_SET + #if EV_SELECT_IS_WINSOCKET SOCKET handle = anfds [fd].handle; #else @@ -1,7 +1,7 @@ /* * libevent compatibility layer * - * Copyright (c) 2007,2008 Marc Alexander Lehmann <libev@schmorp.de> + * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libev@schmorp.de> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modifica- |