mirror of /home/gitosis/repositories/libev.git
*** empty log message ***
This commit is contained in:
parent
6115397455
commit
3db67203e6
1
Changes
1
Changes
|
@ -1,6 +1,7 @@
|
|||
Revision history for libev, a high-performance and full-featured event loop.
|
||||
|
||||
- applied win32 fixes by Michael Lenaghan.
|
||||
- remove dependency on sys/queue.h on freebsd (patch by Vanilla Hsu).
|
||||
|
||||
3.9 Thu Dec 31 07:59:59 CET 2009
|
||||
- signalfd is no longer used by default and has to be requested
|
||||
|
|
2
ev.c
2
ev.c
|
@ -112,7 +112,7 @@ extern "C" {
|
|||
# endif
|
||||
|
||||
# ifndef EV_USE_KQUEUE
|
||||
# if HAVE_KQUEUE && HAVE_SYS_EVENT_H && HAVE_SYS_QUEUE_H
|
||||
# if HAVE_KQUEUE && HAVE_SYS_EVENT_H
|
||||
# define EV_USE_KQUEUE 1
|
||||
# else
|
||||
# define EV_USE_KQUEUE 0
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/queue.h>
|
||||
#include <sys/event.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
|
6
libev.m4
6
libev.m4
|
@ -2,9 +2,9 @@ dnl this file is part of libev, do not make local modifications
|
|||
dnl http://software.schmorp.de/pkg/libev
|
||||
|
||||
dnl libev support
|
||||
AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h sys/queue.h port.h poll.h sys/select.h sys/eventfd.h)
|
||||
AC_CHECK_HEADERS(sys/inotify.h sys/epoll.h sys/event.h port.h poll.h sys/select.h sys/eventfd.h sys/signalfd.h)
|
||||
|
||||
AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select eventfd)
|
||||
AC_CHECK_FUNCS(inotify_init epoll_ctl kqueue port_create poll select eventfd signalfd)
|
||||
|
||||
AC_CHECK_FUNC(clock_gettime, [], [
|
||||
dnl on linux, try syscall wrapper first
|
||||
|
@ -36,5 +36,3 @@ AC_CHECK_FUNC(nanosleep, [], [
|
|||
|
||||
AC_CHECK_LIB(m, ceil)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue