diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/krb5/Imakefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/krb5/Imakefile b/src/lib/krb5/Imakefile index fe69c19b1..fe0c8e983 100644 --- a/src/lib/krb5/Imakefile +++ b/src/lib/krb5/Imakefile @@ -28,18 +28,25 @@ VSSRCS= VSOBJS=syslog.o VSSRCS=syslog.c #endif +#ifdef HasStrdup +STOBJS= +STSRCS= +#else +STOBJS=strdup.o +STSRCS=strdup.c +#endif INCLUDES=-I$(TOP)/include/stdc-incl OBJS = \ cryptoconf.o \ perror.o \ - $(VSOBJS) $(VPOBJS) + $(VSOBJS) $(VPOBJS) $(STOBJS) SRCS = \ cryptoconf.c \ perror.c \ - $(VSSRCS) $(VPSRCS) + $(VSSRCS) $(VPSRCS) $(STSRCS) MakeSubdirs($(SUBDIRS)) |