From: John Kohl Date: Tue, 3 Jul 1990 15:27:37 +0000 (+0000) Subject: parameters on v*printf funcs X-Git-Tag: krb5-1.0-alpha2~381 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3943009a4c35e22dc1176abc00e03bfb9cf74f6d;p=krb5.git parameters on v*printf funcs git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1030 dc483132-0cff-0310-8789-dd5450dbe970 --- 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))