summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/Imakefile13
1 files 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))