From 44cb2e6314dce135626d40fa37d43af13d57bb15 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Wed, 10 Oct 1990 10:46:48 +0000 Subject: [PATCH] add #ifdef for vsyslog git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1200 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/krb5/Imakefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/lib/krb5/Imakefile b/src/lib/krb5/Imakefile index 68fe59f66..ab0e7aa3f 100644 --- a/src/lib/krb5/Imakefile +++ b/src/lib/krb5/Imakefile @@ -19,18 +19,23 @@ VPSRCS= VPOBJS=vfprintf.o vsprintf.o VPSRCS=vfprintf.c vsprintf.c #endif +#ifdef HasVsyslog +VSOBJS= +VSSRCS= +#else +VSOBJS=syslog.o +VSSRCS=syslog.c +#endif OBJS = \ cryptoconf.o \ perror.o \ - syslog.o \ - $(VPOBJS) + $(VSOBJS) $(VPOBJS) SRCS = \ cryptoconf.c \ perror.c \ - syslog.c \ - $(VPSRCS) + $(VSSRCS) $(VPSRCS) MakeSubdirs($(SUBDIRS)) -- 2.26.2