summaryrefslogtreecommitdiffstats
path: root/src/util/support/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2011-09-05 16:26:25 +0000
committerGreg Hudson <ghudson@mit.edu>2011-09-05 16:26:25 +0000
commitca474e3041b3916d65ea8c3383da03de71c2405a (patch)
treeda4446d4c0d4e4afc7bf6649c60c3fe9f998e60b /src/util/support/Makefile.in
parent889d3ca4c482f730cd194f2d83c41d70bc615a67 (diff)
downloadkrb5-ca474e3041b3916d65ea8c3383da03de71c2405a.tar.gz
krb5-ca474e3041b3916d65ea8c3383da03de71c2405a.tar.xz
krb5-ca474e3041b3916d65ea8c3383da03de71c2405a.zip
Add fnmatch support to libkrb5support
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25153 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/support/Makefile.in')
-rw-r--r--src/util/support/Makefile.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/support/Makefile.in b/src/util/support/Makefile.in
index 8e4f70f3c..90dc79fb0 100644
--- a/src/util/support/Makefile.in
+++ b/src/util/support/Makefile.in
@@ -33,6 +33,11 @@ STRLCPY_OBJ=@STRLCPY_OBJ@
##DOS##STRLCPY_ST_OBJ= strlcpy.o
##DOS##STRLCPY_OBJ= $(OUTPRE)strlcpy.$(OBJEXT)
+FNMATCH_ST_OBJ= @FNMATCH_ST_OBJ@
+FNMATCH_OBJ= @FNMATCH_OBJ@
+##DOS##FNMATCH_ST_OBJ= fnmatch.o
+##DOS##FNMATCH_OBJ= $(OUTPRE)fnmatch.$(OBJEXT)
+
PRINTF_ST_OBJ= @PRINTF_ST_OBJ@
PRINTF_OBJ= @PRINTF_OBJ@
##DOS##PRINTF_ST_OBJ= printf.o
@@ -66,6 +71,7 @@ STLIBOBJS= \
path.o \
$(IPC_ST_OBJ) \
$(STRLCPY_ST_OBJ) \
+ $(FNMATCH_ST_OBJ) \
$(PRINTF_ST_OBJ) \
$(MKSTEMP_ST_OBJ)
@@ -83,6 +89,7 @@ LIBOBJS= \
$(OUTPRE)path.$(OBJEXT) \
$(IPC_OBJ) \
$(STRLCPY_OBJ) \
+ $(FNMATCH_OBJ) \
$(PRINTF_OBJ) \
$(MKSTEMP_OBJ)
@@ -102,6 +109,7 @@ SRCS=\
$(srcdir)/utf8.c \
$(srcdir)/utf8_conv.c \
$(srcdir)/strlcpy.c \
+ $(srcdir)/fnmatch.c \
$(srcdir)/printf.c \
$(srcdir)/mkstemp.c \
$(srcdir)/t_k5buf.c \