From: Nick Mathewson Date: Mon, 12 Jan 2009 20:36:24 +0000 (+0000) Subject: Move strlcpy.c into libevent-core, so that code built against libevent-core on platfo... X-Git-Tag: release-2.0.1-alpha~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1df57d2b97311ecb59c86873e9cccf2b9e0be401;p=libevent Move strlcpy.c into libevent-core, so that code built against libevent-core on platforms without strlcpy can link. svn:r991 --- 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)