From: John Kohl Date: Wed, 10 Oct 1990 10:46:48 +0000 (+0000) Subject: add #ifdef for vsyslog X-Git-Tag: krb5-1.0-alpha2~211 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=44cb2e6314dce135626d40fa37d43af13d57bb15;p=krb5.git add #ifdef for vsyslog git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1200 dc483132-0cff-0310-8789-dd5450dbe970 --- 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))