pkgsrc/devel/libevent/Makefile

33 lines
765 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.34 2009/08/18 16:53:14 drochner Exp $
#
Update to 1.4.12: Changes in 1.4.12-stable: Try to contain degree of failure when running on a win32 version so heavily firewalled that we can't fake a socketpair. Fix an obscure timing-dependent, allocator-dependent crash in the evdns code. Use __VA_ARGS__ syntax for varargs macros in event_rpcgen when compiler is not GCC. Activate fd events in a pseudorandom order with O(N) backends, so that we don't systematically favor low fds (select) or earlier-added fds (poll, win32). Fix another pair of fencepost bugs in epoll.c. [Patch from Adam Langley.] Do not break evdns connections to nameservers when our IP changes. Set truncated flag correctly in evdns server replies. Disable strict aliasing with GCC: our code is not compliant with it. Changes in 1.4.11-stable: Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen] Remove the limit on size of HTTP headers by removing static buffers. Fix a nasty dangling pointer bug in epoll.c that could occur after epoll_recalc(). [Patch from Kevin Springborn] Distribute Win32-Code/event-config.h, not ./event-config.h Changes in 1.4.10-stable: clean up buffered http connection data on reset; reported by Brian O'Kelley bug fix and potential race condition in signal handling; from Alexander Drozdov rename the Solaris event ports backend to evport support compilation on Haiku fix signal processing when a signal callback delivers a signal; from Alexander Drozdov const-ify some arguments to evdns functions. off-by-one error in epoll_recalc; reported by Victor Goya include Doxyfile in tar ball; from Jeff Garzik correctly parse queries with encoded \r, \n or + characters
2009-08-16 17:35:03 +02:00
DISTNAME= libevent-1.4.12-stable
PKGNAME= ${DISTNAME:S/-stable//}
CATEGORIES= devel
MASTER_SITES= http://monkey.org/~provos/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://monkey.org/~provos/libevent/
COMMENT= Asynchronous event notification library
CONFLICTS+= libev-[0-9]*
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
TEST_TARGET= verify
PKG_DESTDIR_SUPPORT= user-destdir
LIBS.SunOS+= -lnsl -lresolv
# XXX helps build, but needs more testing
#CFLAGS.Interix+= -Dsockaddr_storage=sockaddr_in -DNI_MAXSERV=32
2008-04-22 19:25:42 +02:00
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MHPUX-11.11-*)
CONFIGURE_ENV+= ac_cv_func_strtoll=yes
CPPFLAGS+= -Dstrtoll=__strtoll
.endif
.include "../../mk/bsd.pkg.mk"