diff --git a/ChangeLog b/ChangeLog index 295b9283..c5aeb538 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ Changes in 1.4.11-stable: o Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen] o Remove the limit on size of HTTP headers by removing static buffers. o Fix a nasty dangling pointer bug in epoll.c that could occur after epoll_recalc(). [Patch from Kevin Springborn] + o Distribute Win32-Code/event-config.h, not ./event-config.h Changes in 1.4.10-stable: o clean up buffered http connection data on reset; reported by Brian O'Kelley diff --git a/Makefile.am b/Makefile.am index e25338f8..8d9d7520 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,6 +46,7 @@ EXTRA_DIST = autogen.sh event.h event-internal.h log.h evsignal.h evdns.3 \ test/test-init.c test/test.sh \ compat/sys/queue.h compat/sys/_time.h \ WIN32-Code/config.h \ + WIN32-Code/event-config.h \ WIN32-Code/win32.c \ WIN32-Code/tree.h \ WIN32-Prj/event_test/event_test.dsp \ @@ -105,7 +106,9 @@ libevent_extra_la_SOURCES = $(EXTRA_SRC) libevent_extra_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) libevent_extra_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) -include_HEADERS = event.h evhttp.h evdns.h evrpc.h evutil.h event-config.h +include_HEADERS = event.h evhttp.h evdns.h evrpc.h evutil.h + +nodist_include_HEADERS = event-config.h INCLUDES = -I$(srcdir)/compat $(SYS_INCLUDES)