- update to 0.7c

- make pkg-descr match reality
This commit is contained in:
Pete Fritchman 2003-10-26 18:39:25 +00:00
parent 4347d5ae77
commit 58c4669e25
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=92226
3 changed files with 16 additions and 15 deletions

View File

@ -6,10 +6,10 @@
#
PORTNAME= libevent
PORTVERSION= 0.7.a
PORTVERSION= 0.7.c
CATEGORIES= devel
MASTER_SITES= http://monkey.org/~provos/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.a$/a/}
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.c$/c/}
MAINTAINER= petef@FreeBSD.org
COMMENT= Provides an API to execute callback functions on certain events

View File

@ -1 +1 @@
MD5 (libevent-0.7a.tar.gz) = 26282333c842a2f1557c1f29d9449d7a
MD5 (libevent-0.7c.tar.gz) = d40f923789b81bc15f5ffd9ad48fe770

View File

@ -1,17 +1,18 @@
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.
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.
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.
Currently, libevent supports kqueue(2), select(2), poll(2), and epoll(4).
The internal event mechanism is completely independent of the exposed event
API, and a simple update of libevent can provide new functionality without
having to redesign the applications. As a result, Libevent allows for
portable application development and provides the most scalable event
notification mechanism available on an operating system.
WWW: http://www.monkey.org/~provos/libevent/