From fb43ec963d44646af786181797f0c7fb28294608 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 19 Mar 2007 08:01:40 +0000 Subject: * missing/{strlcat,strlcpy}.c, missing.h: new functions. * LEGAL: add copyright notice about above files. * configure.in: check whether strlcat and strlcpy are exist or not. * {bcc32,win32,wince}/Makefile.sub: use above files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bcc32/Makefile.sub | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bcc32') diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index fe095ad03..0545816b8 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -136,7 +136,7 @@ EXTLIBS = MEMLIB = !endif LIBS = $(MEMLIB) cw32i.lib import32.lib ws2_32.lib $(EXTLIBS) -MISSING = acosh.obj crypt.obj erf.obj win32.obj +MISSING = acosh.obj crypt.obj erf.obj strlcat.obj strlcpy.obj win32.obj !ifndef STACK STACK = 0x2000000 @@ -357,7 +357,7 @@ s,@ARFLAGS@,$(ARFLAGS) ,;t t s,@LN_S@,$(LN_S),;t t s,@SET_MAKE@,$(SET_MAKE),;t t s,@CP@,copy > nul,;t t -s,@LIBOBJS@, acosh.obj crypt.obj erf.obj win32.obj,;t t +s,@LIBOBJS@, acosh.obj crypt.obj erf.obj strlcat.obj strlcpy.obj win32.obj,;t t s,@ALLOCA@,$(ALLOCA),;t t s,@DEFAULT_KCODE@,$(DEFAULT_KCODE),;t t s,@EXEEXT@,.exe,;t t -- cgit