summaryrefslogtreecommitdiff
path: root/package/libevent/patches/patch-event_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-05-12 12:29:44 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-05-12 12:29:44 +0200
commitdcdecf4c6e5ec67ee07ae1d2f6cb5586ee961759 (patch)
treeb33ae4049d249f92d8cd4c5a2a3223ee96de4f64 /package/libevent/patches/patch-event_c
parent15a4b2f89998fc69f608ed2cb4cd107c7df7d51c (diff)
update to latest stable 1.x version
Diffstat (limited to 'package/libevent/patches/patch-event_c')
-rw-r--r--package/libevent/patches/patch-event_c18
1 files changed, 0 insertions, 18 deletions
diff --git a/package/libevent/patches/patch-event_c b/package/libevent/patches/patch-event_c
deleted file mode 100644
index 3a7571cfd..000000000
--- a/package/libevent/patches/patch-event_c
+++ /dev/null
@@ -1,18 +0,0 @@
-$Id$
-
- In uClibc, clock_gettime(2) is defined as user-space
- function in <time.h> instead of <sys/time.h>, so we
- need that as well. Candidate for sending to upstream.
-
---- libevent-1.3.orig/event.c 2007-02-16 00:49:06.000000000 +0000
-+++ libevent-1.3/event.c 2007-02-18 14:21:29.000000000 +0000
-@@ -51,6 +51,9 @@
- #include <signal.h>
- #include <string.h>
- #include <assert.h>
-+#ifdef __UCLIBC__
-+#include <time.h>
-+#endif
-
- #include "event.h"
- #include "event-internal.h"