strlcpy() doesn't exist on Linux, so use the implementation in os/.

This commit is contained in:
Donnie Berkholz 2006-04-24 05:39:47 +00:00
parent a715634d23
commit 81f3c2937d
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-04-23 Donnie Berkholz <spyderous@gentoo.org>
* hw/xfree86/dummylib/Makefile.am:
strlcpy() doesn't exist on Linux, so use the implementation in os/.
2006-04-23 Matthieu Herrb <matthieu.herrb@laas.fr>
* hw/xfree86/dummylib/xalloc.c
* hw/xfree86/loader/loader.c\

View File

@ -8,6 +8,10 @@ INCLUDES = $(XORG_INCS)
AM_CFLAGS = $(XORG_CFLAGS) @SERVER_DEFINES@ @LOADER_DEFINES@
if NEED_STRLCAT
STRL_SRCS = $(top_srcdir)/os/strlcat.c $(top_srcdir)/os/strlcpy.c
endif
libdummy_a_SOURCES = getvalidbios.c \
pcitestmulti.c xf86allocscripi.c \
xf86addrestolist.c xf86drvmsg.c xf86drvmsgverb.c \
@ -22,6 +26,7 @@ libdummy_nonserver_a_SOURCES = \
getvalidbios.c \
logvwrite.c \
pcitestmulti.c \
$(STRL_SRCS) \
verrorf.c \
xalloc.c \
xf86allocscripi.c \