summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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))