diff options
Diffstat (limited to 'devel/libevent')
-rw-r--r-- | devel/libevent/Makefile | 4 | ||||
-rw-r--r-- | devel/libevent/files/patch-configure.in | 27 |
2 files changed, 0 insertions, 31 deletions
diff --git a/devel/libevent/Makefile b/devel/libevent/Makefile index dbca4bfd59db..6736b68ea4c4 100644 --- a/devel/libevent/Makefile +++ b/devel/libevent/Makefile @@ -18,10 +18,6 @@ COMMENT= Provides an API to execute callback functions on certain events GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_AUTOTOOLS= aclocal autoheader libtoolize autoconf automake -ACLOCAL_ARGS= -I m4 -AUTOMAKE_ARGS= --add-missing --force-missing --copy - MAN3= event.3 \ evdns.3 MLINKS= event.3 event_init.3 \ diff --git a/devel/libevent/files/patch-configure.in b/devel/libevent/files/patch-configure.in deleted file mode 100644 index 21f4600ae7a9..000000000000 --- a/devel/libevent/files/patch-configure.in +++ /dev/null @@ -1,27 +0,0 @@ ---- configure.in.orig 2011-02-22 09:41:10.545704489 +0100 -+++ configure.in 2011-02-22 09:41:48.422499326 +0100 -@@ -6,6 +6,8 @@ - AM_CONFIG_HEADER(config.h) - dnl AM_MAINTAINER_MODE - -+AC_CONFIG_MACRO_DIR([m4]) -+ - AC_CANONICAL_HOST - - AC_DEFINE(NUMERIC_VERSION, 0x01040e00, [Numeric representation of the version]) -@@ -246,13 +248,14 @@ - if ((kq = kqueue()) == -1) - exit(1); - -+ memset(&ev, 0, sizeof(ev)); - ev.ident = fd[[1]]; - ev.filter = EVFILT_WRITE; - ev.flags = EV_ADD | EV_ENABLE; - n = kevent(kq, &ev, 1, NULL, 0, NULL); - if (n == -1) - exit(1); -- -+ - read(fd[[0]], buf, sizeof(buf)); - - ts.tv_sec = 0; |