mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
Don't try to include ipsec support if we are building for the install
floppy image.
This commit is contained in:
parent
6c3acb8c18
commit
3285f64159
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55574
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user