summaryrefslogtreecommitdiff
path: root/devel/libevent
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-08-16 15:35:03 +0000
committerwiz <wiz@pkgsrc.org>2009-08-16 15:35:03 +0000
commit718c4151d93588e8cf03274c14c60c29307100b7 (patch)
treeaa1192116ef47b9695ddf4be0362e6a17969be2b /devel/libevent
parent902cf68b066a9c94141c94017345531e13160bbc (diff)
downloadpkgsrc-718c4151d93588e8cf03274c14c60c29307100b7.tar.gz
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
Diffstat (limited to 'devel/libevent')
-rw-r--r--devel/libevent/Makefile4
-rw-r--r--devel/libevent/distinfo10
-rw-r--r--devel/libevent/patches/patch-ac6
3 files changed, 10 insertions, 10 deletions
diff --git a/devel/libevent/Makefile b/devel/libevent/Makefile
index f63394af300..3a2a1e23760 100644
--- a/devel/libevent/Makefile
+++ b/devel/libevent/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2009/02/27 22:50:43 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2009/08/16 15:35:03 wiz Exp $
#
# WARNING: updating this package (as of the 1.1/1.2 releases) means
# updating BUILDLINK_ABI_DEPENDS in buildlink3.mk and a PKGREVISION
@@ -7,7 +7,7 @@
# from being ABI compatible across releases until this is fixed.
# [tvierling 20070210]
-DISTNAME= libevent-1.4.9-stable
+DISTNAME= libevent-1.4.12-stable
PKGNAME= ${DISTNAME:S/-stable//}
CATEGORIES= devel
MASTER_SITES= http://monkey.org/~provos/
diff --git a/devel/libevent/distinfo b/devel/libevent/distinfo
index f2802c20e4c..390a9ad27d8 100644
--- a/devel/libevent/distinfo
+++ b/devel/libevent/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.23 2009/02/27 22:50:43 wiz Exp $
+$NetBSD: distinfo,v 1.24 2009/08/16 15:35:03 wiz Exp $
-SHA1 (libevent-1.4.9-stable.tar.gz) = 5033af5ad0ddd9eb16be68e8f91e0c35e7f327c3
-RMD160 (libevent-1.4.9-stable.tar.gz) = 547793169f5ac0780110eb13868bc1b4614dcc97
-Size (libevent-1.4.9-stable.tar.gz) = 453043 bytes
+SHA1 (libevent-1.4.12-stable.tar.gz) = ad5013cf5646e6fc6d0b832c0284b35086250c8b
+RMD160 (libevent-1.4.12-stable.tar.gz) = 142b188e44598d6f3892e5630130ace678ffa701
+Size (libevent-1.4.12-stable.tar.gz) = 499266 bytes
SHA1 (patch-aa) = 6c8a07b3ff7bb6daa972409b0a8bd76dc551f0a6
-SHA1 (patch-ac) = cf4ac4f8e6c72bb11cf714b3b5e569e2a8c1ce34
+SHA1 (patch-ac) = 87ea2413896c83527bcb6334a397d001a4e7e6ce
SHA1 (patch-ad) = c842811d0b8e3f843a2f363dd2d11ec784fb8264
diff --git a/devel/libevent/patches/patch-ac b/devel/libevent/patches/patch-ac
index b570e7a0d00..b8b4d0743b8 100644
--- a/devel/libevent/patches/patch-ac
+++ b/devel/libevent/patches/patch-ac
@@ -1,6 +1,6 @@
-$NetBSD: patch-ac,v 1.4 2008/04/22 17:16:54 tnn Exp $
+$NetBSD: patch-ac,v 1.5 2009/08/16 15:35:04 wiz Exp $
---- test/regress.gen.h.orig 2008-03-03 04:37:13.000000000 +0100
+--- test/regress.gen.h.orig 2009-07-25 02:17:41.000000000 +0000
+++ test/regress.gen.h
@@ -8,7 +8,13 @@
#include <event-config.h>
@@ -14,5 +14,5 @@ $NetBSD: patch-ac,v 1.4 2008/04/22 17:16:54 tnn Exp $
#endif
+
#define EVTAG_HAS(msg, member) ((msg)->member##_set == 1)
+ #ifdef __GNUC__
#define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args)
- #define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args)