01b0122954
We remove IPSEC only in parts of the tree, and not others. RELEASE_CRUNCH to disable it has not kept up with all its uses. Remove it. Should there be a real need to disable IPSEC, one that hasn't shown up in the base system to date, it can be re-added behind a WITHOUT_IPSEC build option.
31 lines
428 B
Makefile
31 lines
428 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CONFS= inetd.conf
|
|
PROG= inetd
|
|
MAN= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
SRCS= inetd.c builtins.c
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -DLOGIN_CAP
|
|
#CFLAGS+= -DSANITY_CHECK
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
LIBADD= util
|
|
|
|
.if ${MK_TCP_WRAPPERS} != "no"
|
|
CFLAGS+= -DLIBWRAP
|
|
LIBADD+= wrap
|
|
.endif
|
|
|
|
CFLAGS+= -DIPSEC
|
|
LIBADD+= ipsec
|
|
|
|
.include <bsd.prog.mk>
|