Tue Aug 4 18:39:31 2009 UTC ()
Pull up following revision(s) (requested by tls in ticket #876):
	lib/libevent/Makefile: revision 1.6
According to the libevent 1.4.12 change announcement, problems have been
observed with GCC 4 and strict-aliasing in the libevent code.  Add
-fno-strict-aliasing to work around this (same thing libevent did
upstream).


(snj)
diff -r1.4.4.1 -r1.4.4.2 src/lib/libevent/Makefile

cvs diff -r1.4.4.1 -r1.4.4.2 src/lib/libevent/Attic/Makefile (expand / switch to unified diff)

--- src/lib/libevent/Attic/Makefile 2009/08/04 18:32:08 1.4.4.1
+++ src/lib/libevent/Attic/Makefile 2009/08/04 18:39:30 1.4.4.2
@@ -1,20 +1,20 @@ @@ -1,20 +1,20 @@
1# $NetBSD: Makefile,v 1.4.4.1 2009/08/04 18:32:08 snj Exp $ 1# $NetBSD: Makefile,v 1.4.4.2 2009/08/04 18:39:30 snj Exp $
2# @(#)Makefile 8.1 (Berkeley) 6/4/93 2# @(#)Makefile 8.1 (Berkeley) 6/4/93
3 3
4NOLINT= # Until someone explains to me how to avoid lint stupidity 4NOLINT= # Until someone explains to me how to avoid lint stupidity
5USE_SHLIBDIR= yes 5USE_SHLIBDIR= yes
6 6
7CPPFLAGS+=-I${.CURDIR} 7CPPFLAGS+=-I${.CURDIR} -fno-strict-aliasing
8.include <bsd.own.mk> 8.include <bsd.own.mk>
9 9
10LIB= event 10LIB= event
11SRCS= buffer.c evbuffer.c evdns.c event.c event_tagging.c evrpc.c evutil.c \ 11SRCS= buffer.c evbuffer.c evdns.c event.c event_tagging.c evrpc.c evutil.c \
12 http.c kqueue.c log.c poll.c signal.c 12 http.c kqueue.c log.c poll.c signal.c
13 13
14INCS= evdns.h event.h evhttp.h evrpc.h evutil.h 14INCS= evdns.h event.h evhttp.h evrpc.h evutil.h
15INCSDIR=/usr/include 15INCSDIR=/usr/include
16 16
17INCS+= config.h 17INCS+= config.h
18INCSNAME_config.h= event-config.h 18INCSNAME_config.h= event-config.h
19 19
20MAN= evdns.3 event.3 20MAN= evdns.3 event.3