Displaying 4 results from an estimated 4 matches for "have_ioloop".
2005 Dec 15
2
Patch: More of kqueue() support.
...se \
strcasecmp stricmp vsnprintf vsyslog writev pread \
setrlimit setproctitle seteuid setreuid setegid setresgid \
- strtoull strtouq setpriority quotactl getmntent)
+ strtoull strtouq setpriority quotactl getmntent kqueue kevent)
dnl * I/O loop function
have_ioloop=no
@@ -329,12 +329,17 @@ if test "$ioloop" = "epoll"; then
fi
if test "$ioloop" = "kqueue"; then
- AC_CHECK_FUNC(kqueue, [
- AC_DEFINE(IOLOOP_KQUEUE,, [Implement I/O loop with FreeBSD kqueue()])
- have_ioloop=yes
- ], [
+ if test "$ac_cv_fun...
2004 Oct 25
0
[PATCH] Request for testing: BSD kqueue ioloop handler
...re.in 2004-10-21 06:37:24.000000000 +0400
+++ dovecot-1.0-test51/configure.in 2004-10-25 14:06:44.000000000 +0400
@@ -269,6 +269,17 @@ if test "$ioloop" = "epoll"; then
AC_CHECK_FUNC(epoll_create, [
AC_DEFINE(IOLOOP_EPOLL,, Implement I/O loop with Linux 2.6 epoll())
have_ioloop=yes
+ ioloop=epoll
+ ], [
+ ioloop=""
+ ])
+fi
+
+if test "$ioloop" = "" || test "$ioloop" = "kqueue"; then
+ AC_CHECK_FUNC(kqueue, [
+ AC_DEFINE(IOLOOP_KQUEUE,, Implement I/O loop with BSD kqueue)
+ have_ioloop=yes
+ ioloop=kqueue...
2005 Dec 14
2
Patch: ioloop using kqueue/kevent for FreeBSD
...ICAL_BUILD
+AC_CANONICAL_HOST
+AC_CANONICAL_TARGET
+
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE
@@ -327,6 +331,15 @@
])
fi
+if test "$ioloop" = "kqueue"; then
+ AC_CHECK_FUNC(kqueue, [
+ AC_DEFINE(IOLOOP_KQUEUE,, [Implement I/O loop with FreeBSD kqueue()])
+ have_ioloop=yes
+ ], [
+ ioloop=""
+ ])
+fi
+
if test "$ioloop" = "" || test "$ioloop" = "poll"; then
AC_CHECK_FUNC(poll, [
AC_DEFINE(IOLOOP_POLL,, Implement I/O loop with poll())
diff -rN -u old-dovecot-cvs/src/lib/Makefile.am new-dovecot-cvs/src...
2006 Mar 17
1
[PATCH] OpenSSL RNG initialization
...tricmp vsnprintf vsyslog writev pread \
setrlimit setproctitle seteuid setreuid setegid setresgid \
- strtoull strtouq setpriority quotactl getmntent kqueue kevent)
+ strtoull strtouq setpriority quotactl getmntent kqueue kevent \
+ getrusage)
dnl * I/O loop function
have_ioloop=no
Index: src/lib/lib.h
===================================================================
RCS file: /home/cvs/dovecot/src/lib/lib.h,v
retrieving revision 1.20
diff -u -r1.20 lib.h
--- src/lib/lib.h 25 Sep 2005 10:44:04 -0000 1.20
+++ src/lib/lib.h 10 Mar 2006 17:15:02 -0000
@@ -20,6 +20,13 @@
#...