pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/libevent Update to 1.4.12:
details: https://anonhg.NetBSD.org/pkgsrc/rev/175d5f7dbb4d
branches: trunk
changeset: 563455:175d5f7dbb4d
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Aug 16 15:35:03 2009 +0000
description:
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:
devel/libevent/Makefile | 4 ++--
devel/libevent/distinfo | 10 +++++-----
devel/libevent/patches/patch-ac | 6 +++---
3 files changed, 10 insertions(+), 10 deletions(-)
diffs (54 lines):
diff -r 7651fb155d5b -r 175d5f7dbb4d devel/libevent/Makefile
--- a/devel/libevent/Makefile Sun Aug 16 14:27:40 2009 +0000
+++ b/devel/libevent/Makefile Sun Aug 16 15:35:03 2009 +0000
@@ -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 -r 7651fb155d5b -r 175d5f7dbb4d devel/libevent/distinfo
--- a/devel/libevent/distinfo Sun Aug 16 14:27:40 2009 +0000
+++ b/devel/libevent/distinfo Sun Aug 16 15:35:03 2009 +0000
@@ -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 -r 7651fb155d5b -r 175d5f7dbb4d devel/libevent/patches/patch-ac
--- a/devel/libevent/patches/patch-ac Sun Aug 16 14:27:40 2009 +0000
+++ b/devel/libevent/patches/patch-ac Sun Aug 16 15:35:03 2009 +0000
@@ -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 @@
#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)
Home |
Main Index |
Thread Index |
Old Index