include strlcpy and *printf and use them

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14930 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-04-24 19:43:06 +00:00
parent da6cb81649
commit ddb34e00b3
4 changed files with 40 additions and 8 deletions
+12 -1
View File
@@ -2,6 +2,12 @@
include $(top_srcdir)/Makefile.am.common
if do_roken_rename
ES = snprintf.c strlcpy.c
endif
AM_CPPFLAGS += $(ROKEN_RENAME)
YFLAGS = -d
lib_LTLIBRARIES = libcom_err.la
@@ -13,7 +19,7 @@ include_HEADERS = com_err.h com_right.h
compile_et_SOURCES = compile_et.c compile_et.h parse.y lex.l
libcom_err_la_SOURCES = error.c com_err.c roken_rename.h
libcom_err_la_SOURCES = error.c com_err.c roken_rename.h $(ES)
CLEANFILES = lex.c parse.c parse.h
@@ -22,3 +28,8 @@ $(compile_et_OBJECTS): parse.h parse.c ## XXX broken automake 1.4s
compile_et_LDADD = \
$(LIB_roken) \
$(LEXLIB)
snprintf.c:
$(LN_S) $(srcdir)/../roken/snprintf.c .
strlcpy.c:
$(LN_S) $(srcdir)/../roken/strlcpy.c .