2003-07-21 18:43:48 by Martti Kuparinen | Files touched by this commit (90) |
Log message:
COMMENT should start with a capital letter.
|
2003-07-17 23:50:07 by grant beattie | Files touched by this commit (1504) |
Log message:
s/netbsd.org/NetBSD.org/
|
2003-06-23 15:28:53 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Do not add dependency if /usr/include/event.h exists.
Based on patch by Juan RP, slightly modified by me.
|
2003-06-04 19:15:37 by Julio Merino | Files touched by this commit (1) |
Log message:
Add a buildlink2.mk file. Requested by Juan RP, needed by an upcoming
package in pkgsrc-wip.
|
2003-06-02 03:21:53 by Jan Schaumann | Files touched by this commit (1131) |
Log message:
Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
|
2002-09-19 03:51:25 by Masao Uebayashi | Files touched by this commit (4) | |
Log message:
Initial import of libevent-0.6.
The libevent API provides a mechanism to execute a callback function when a
specific event occurs on a file descriptor or after a timeout has been
reached.
libevent is meant to replace the asynchronous event loop found in event
driven network servers. An application just needs to call event_dispatch()
and can then add or remove events dynamically without having to change the
event loop.
Currently, libevent supports kqueue(2) and select(2). Support for poll(2)
and /dev/poll is planned. The internal event mechanism is completely
independent of the exposed event API, and a simple update of libevent can
provide this new functionality without having to redesign the server
applications.
|