summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/Imakefile
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-07-03 15:27:37 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-07-03 15:27:37 +0000
commit3943009a4c35e22dc1176abc00e03bfb9cf74f6d (patch)
tree3204f3075cbad76722d060136b516059603ff3f0 /src/lib/krb5/Imakefile
parentc6c9932ee3de8a81e82833b5255188fde27ee210 (diff)
downloadkrb5-3943009a4c35e22dc1176abc00e03bfb9cf74f6d.tar.gz
krb5-3943009a4c35e22dc1176abc00e03bfb9cf74f6d.tar.xz
krb5-3943009a4c35e22dc1176abc00e03bfb9cf74f6d.zip
parameters on v*printf funcs
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1030 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/Imakefile')
-rw-r--r--src/lib/krb5/Imakefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/lib/krb5/Imakefile b/src/lib/krb5/Imakefile
index 6c970ba28..5a11a7160 100644
--- a/src/lib/krb5/Imakefile
+++ b/src/lib/krb5/Imakefile
@@ -11,18 +11,25 @@
#define PassCDebugFlags
NormalLibraryObjectRule()
SUBDIRS = ccache keytab krb rcache free os kdb des crc-32
+#ifdef HasVfprintf
+VPOBJS=
+VPSRCS=
+#else
+VPOBJS=vfprintf.o vsprintf.o
+VPSRCS=vfprintf.c vsprintf.c
+#endif
+
OBJS = \
cryptoconf.o \
perror.o \
syslog.o \
- vfprintf.o \
- vsprintf.o
+ $(VPOBJS)
+
SRCS = \
cryptoconf.c \
perror.c \
syslog.c \
- vfprintf.c \
- vsprintf.c
+ $(VPSRCS)
MakeSubdirs($(SUBDIRS))