summaryrefslogtreecommitdiff
path: root/devel/libevent/patches/patch-ac
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2011-02-11 21:13:47 +0000
committertnn <tnn@pkgsrc.org>2011-02-11 21:13:47 +0000
commitec7d6c3b8cca89ea37dee63ad41026e8b33e0704 (patch)
treec534cfd548e48d226cf36b45b7077c7bc82e006a /devel/libevent/patches/patch-ac
parentbeca8fac3d4c2a9d5491f44c3ceca3dfa074d6df (diff)
downloadpkgsrc-ec7d6c3b8cca89ea37dee63ad41026e8b33e0704.tar.gz
Update to libevent-2.0.10.
Supposedly API backwards-compatible with libevent 1.x. Will need a recursive revbump for shlib name changes, though. All regression tests pass except "thread_conditions_simple". Not sure why yet, but it's new API so shouldn't break anything existing in pkgsrc today. Changes in libevent 2.0 include cleaner interfaces, buffered I/O improvements, improved multithreading and openssl integration.
Diffstat (limited to 'devel/libevent/patches/patch-ac')
-rw-r--r--devel/libevent/patches/patch-ac18
1 files changed, 0 insertions, 18 deletions
diff --git a/devel/libevent/patches/patch-ac b/devel/libevent/patches/patch-ac
deleted file mode 100644
index b8b4d0743b8..00000000000
--- a/devel/libevent/patches/patch-ac
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-ac,v 1.5 2009/08/16 15:35:04 wiz Exp $
-
---- 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>
- #ifdef _EVENT_HAVE_STDINT_H
- #include <stdint.h>
-+
-+#elif defined(_EVENT_HAVE_INTTYPES_H)
-+# include <inttypes.h>
-+#else
-+# error No inttypes.h or stdint.h to give integer types
- #endif
-+
- #define EVTAG_HAS(msg, member) ((msg)->member##_set == 1)
- #ifdef __GNUC__
- #define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args)