From 1df57d2b97311ecb59c86873e9cccf2b9e0be401 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 12 Jan 2009 20:36:24 +0000 Subject: [PATCH] Move strlcpy.c into libevent-core, so that code built against libevent-core on platforms without strlcpy can link. svn:r991 --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5d3a1f3c..8be7421b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -83,10 +83,10 @@ event-config.h: config.h CORE_SRC = event.c buffer.c evbuffer-internal.h bufferevent.c \ bufferevent-internal.h evmap.c evmap.h \ - log.c evutil.c $(SYS_SRC) + log.c evutil.c strlcpy.c strlcpy-internal.h $(SYS_SRC) EXTRA_SRC = event_tagging.c http.c evhttp.h http-internal.h evdns.c \ evdns.h evrpc.c evrpc.h evrpc-internal.h mm-internal.h \ - strlcpy.c strlcpy-internal.h strlcpy-internal.h ipv6-internal.h + ipv6-internal.h libevent_la_SOURCES = $(CORE_SRC) $(EXTRA_SRC) libevent_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS)