mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 19:21:04 +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"
|
.if ${MACHINE_ARCH} == "alpha"
|
||||||
COPTS+= -fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
|
COPTS+= -fno-builtin # GCC's builtin memcpy doesn't do unaligned copies
|
||||||
.endif
|
.endif
|
||||||
|
DPADD= ${LIBM}
|
||||||
|
LDADD= -lm
|
||||||
|
|
||||||
|
.if !defined(RELEASE_CRUNCH)
|
||||||
CFLAGS+=-DIPSEC
|
CFLAGS+=-DIPSEC
|
||||||
DPADD= ${LIBM} ${LIBIPSEC}
|
DPADD+= ${LIBIPSEC}
|
||||||
LDADD= -lm -lipsec
|
LDADD+= -lipsec
|
||||||
|
.endif
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
Loading…
Reference in New Issue
Block a user