summaryrefslogtreecommitdiff
path: root/devel/libevent
AgeCommit message (Collapse)AuthorFilesLines
2005-02-28Update to 1.0b:wiz2-6/+6
Bug fixes for backwards compatibility.
2005-02-23Add RMD160 digests.agc1-1/+2
2005-01-05Update to 1.0a:wiz2-5/+5
* Bug fixes for threaded applications. Thanks to Andrew Danforth.
2004-12-26Update to 1.0, and set TEST_TARGET.wiz2-5/+6
Changes in 1.0: * Support for multi-threaded applications - experimental. * Event priorities with priority queues.
2004-08-15Update to 0.9:wiz2-5/+5
This version includes support for /dev/poll so that libevent now supports all fast event mechanisms. It also improves the portability across operating systems.
2004-04-30libevent has no shlibs. Make BUILDLINK_DEPMETHOD.libevent=build.tv1-1/+2
2004-04-25Unused.wiz1-58/+0
2004-04-21Update libevent to 0.8xtraeme2-5/+5
Changes: 0.8: * Buffered event abstraction to make writing network applications easier; see libio for the predecessor of this idea. 0.7c: * Bug fixes in Linux epoll and poll support. 0.7b: * 3-clause BSD-license. * Experimental support for real-time signals. Likely to be buggy. * Experimental support for Windows from Mike Davis. 0.7: * Requires level-triggered epoll patch for Linux epoll support.
2004-04-20Simplify.xtraeme1-33/+7
2004-04-20bl3ifyxtraeme3-1/+56
2004-02-12Create a new variable PREFER_NATIVE that has the opposite semanticsjlam1-5/+15
as PREFER_PKGSRC. Preferences are determined by the most specific instance of the package in either PREFER_PKGSRC or PREFER_NATIVE. If a package is specified in neither or in both variables, then PREFER_PKGSRC has precedence over PREFER_NATIVE.
2004-02-12Reorganize code so that any dependencies are checked as part of decidingjlam1-1/+7
whether the software is built-in or not. This facilitates implementing the forthcoming PKGSRC_NATIVE variable.
2004-02-05Make PREFER_PKGSRC just yes/no or a list of packages. This makes itjlam1-5/+5
simpler to understand.
2004-02-05Rename BUILDLINK_PREFER_PKGSRC to PREFER_PKGSRC so that we can use itsjlam1-5/+4
value outside of buildlink-related files.
2004-02-05Support a new global variable:jlam1-1/+9
BUILDLINK_PREFER_PKGSRC This variable determines whether or not to prefer the pkgsrc versions of software that is also present in the base system. This variable is multi-state: defined, or "yes" always prefer the pkgsrc versions not defined, or "no" only use the pkgsrc versions if needed by dependency requirements This can also take a list of packages for which to prefer the pkgsrc-installed software. The package names may be found by consulting the value added to BUILDLINK_PACKAGES in the buildlink[23].mk files for that package.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-23Do not add dependency if /usr/include/event.h exists.wiz1-1/+12
Based on patch by Juan RP, slightly modified by me.
2003-06-04Add a buildlink2.mk file. Requested by Juan RP, needed by an upcomingjmmv1-0/+24
package in pkgsrc-wip.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-09-19Initial import of libevent-0.6.uebayasi4-0/+36
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.