parameters on v*printf funcs
authorJohn Kohl <jtkohl@mit.edu>
Tue, 3 Jul 1990 15:27:37 +0000 (15:27 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 3 Jul 1990 15:27:37 +0000 (15:27 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1030 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/Imakefile

index 6c970ba281ea8b3065aeeb90256217260d5812f6..5a11a7160624558d81701ec424212ae27c96aa58 100644 (file)
 #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))