projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d29f493
)
add #ifdef for vsyslog
author
John Kohl
<jtkohl@mit.edu>
Wed, 10 Oct 1990 10:46:48 +0000
(10:46 +0000)
committer
John Kohl
<jtkohl@mit.edu>
Wed, 10 Oct 1990 10:46:48 +0000
(10:46 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1200
dc483132
-0cff-0310-8789-
dd5450dbe970
src/lib/krb5/Imakefile
patch
|
blob
|
history
diff --git
a/src/lib/krb5/Imakefile
b/src/lib/krb5/Imakefile
index 68fe59f663ea365a4f12e757923abb18eb41e498..ab0e7aa3f21794c401324bd35b9418776ede699d 100644
(file)
--- 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))