Source-Changes-D archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src/lib/libevent
Thor Lancelot Simon schrieb:
Module Name: src
Committed By: tls
Date: Wed Aug 19 01:38:39 UTC 2009
Modified Files:
src/lib/libevent: Makefile
Log Message:
Matthias Drochner pointed out that I lost the _EVENT_ prefix from all
the autoconf defines in the installed event_config.h. Of course, the
libevent documentation basically says not to use event_config.h, so it
is a little hard to see why the right fix isn't to just not install it...
...in any event, fix this approximately as the stock libevent Makefile does.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libevent/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4346 (20090818) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
Please change filename from event_config.h to event-config.h in
lib/libevent/Makefile .
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4347 (20090819) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
diff -u -r1.7 Makefile
--- lib/libevent/Makefile 19 Aug 2009 01:38:39 -0000 1.7
+++ lib/libevent/Makefile 19 Aug 2009 12:07:35 -0000
@@ -11,7 +11,7 @@
SRCS= buffer.c evbuffer.c evdns.c event.c event_tagging.c evrpc.c evutil.c \
http.c kqueue.c log.c poll.c signal.c
-INCS= evdns.h event.h evhttp.h evrpc.h evutil.h event_config.h
+INCS= evdns.h event.h evhttp.h evrpc.h evutil.h event-config.h
INCSDIR=/usr/include
MAN= evdns.3 event.3
@@ -89,7 +89,7 @@
MLINKS+=evdns.3 evdns_search_ndots_set.3
MLINKS+=evdns.3 evdns_set_log_fn.3
-event_config.h: config.h
+event-config.h: config.h
sed -e 's/#define /#define _EVENT_/' ${.ALLSRC} > ${.OBJDIR}/${.TARGET}
.include <bsd.lib.mk>
Home |
Main Index |
Thread Index |
Old Index