Don't try to include ipsec support if we are building for the install

floppy image.
This commit is contained in:
Mike Smith 2000-01-07 19:06:54 +00:00
parent 6c3acb8c18
commit 3285f64159
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55574

View File

@ -8,8 +8,13 @@ COPTS+= -Wall -Wmissing-prototypes
.if ${MACHINE_ARCH} == "alpha"
COPTS+= -fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
.endif
DPADD= ${LIBM}
LDADD= -lm
.if !defined(RELEASE_CRUNCH)
CFLAGS+=-DIPSEC
DPADD= ${LIBM} ${LIBIPSEC}
LDADD= -lm -lipsec
DPADD+= ${LIBIPSEC}
LDADD+= -lipsec
.endif
.include <bsd.prog.mk>