summaryrefslogtreecommitdiffstats
path: root/src/util/support/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2008-10-24 17:12:00 +0000
committerGreg Hudson <ghudson@mit.edu>2008-10-24 17:12:00 +0000
commit246f30acb1f0e47216bcd89b2b8309845846adfb (patch)
tree431badcc2dea115c1023f2044bc7b84706d01431 /src/util/support/Makefile.in
parentdaf33d4ee65c82db2f5a800e590aff28c9a49fab (diff)
downloadkrb5-246f30acb1f0e47216bcd89b2b8309845846adfb.tar.gz
krb5-246f30acb1f0e47216bcd89b2b8309845846adfb.tar.xz
krb5-246f30acb1f0e47216bcd89b2b8309845846adfb.zip
Add build system support for strlcpy and strlcat on platforms which do
not provide it natively. ticket: 6200 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20916 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/support/Makefile.in')
-rw-r--r--src/util/support/Makefile.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/support/Makefile.in b/src/util/support/Makefile.in
index 4fc6b1d69..d931a1f02 100644
--- a/src/util/support/Makefile.in
+++ b/src/util/support/Makefile.in
@@ -30,6 +30,9 @@ MKSTEMP_OBJ= @MKSTEMP_OBJ@
##DOS##MKSTEMP_ST_OBJ= mkstemp.o
##DOS##MKSTEMP_OBJ= $(OUTPRE)mkstemp.$(OBJEXT)
+STRLCPY_ST_OBJ=@STRLCPY_ST_OBJ@
+STRLCPY_OBJ=@STRLCPY_OBJ@
+
PRINTF_ST_OBJ= @PRINTF_ST_OBJ@
PRINTF_OBJ= @PRINTF_OBJ@
@@ -40,6 +43,7 @@ STLIBOBJS= \
errors.o \
gmt_mktime.o \
fake-addrinfo.o \
+ $(STRLCPY_ST_OBJ) \
$(PRINTF_ST_OBJ) \
$(MKSTEMP_ST_OBJ)
@@ -50,6 +54,7 @@ LIBOBJS= \
$(OUTPRE)errors.$(OBJEXT) \
$(OUTPRE)gmt_mktime.$(OBJEXT) \
$(OUTPRE)fake-addrinfo.$(OBJEXT) \
+ $(STRLCPY_OBJ) \
$(PRINTF_OBJ) \
$(MKSTEMP_OBJ)
@@ -65,6 +70,7 @@ SRCS=\
$(srcdir)/errors.c \
$(srcdir)/gmt_mktime.c \
$(srcdir)/fake-addrinfo.c \
+ $(srcdir)/strlcpy.c \
$(srcdir)/printf.c \
$(srcdir)/mkstemp.c
@@ -140,6 +146,9 @@ fake-addrinfo.so fake-addrinfo.po $(OUTPRE)fake-addrinfo.$(OBJEXT): \
$(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \
$(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \
cache-addrinfo.h fake-addrinfo.c supp-int.h
+strlcpy.so strlcpy.po $(OUTPRE)strlcpy.$(OBJEXT): \
+ $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/k5-platform.h \
+ $(SRCTOP)/include/k5-thread.h strlcpy.c
printf.so printf.po $(OUTPRE)printf.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
$(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \
printf.c