Make inetd picobsd friendly, dont use ipsec when RELEASE_CRUNCH

is defined

Approved-by: jordan
This commit is contained in:
Luigi Rizzo 2000-02-09 09:04:36 +00:00
parent 17ba97a25c
commit 8f9196f4a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57084

View File

@ -9,8 +9,11 @@ MLINKS= inetd.8 inetd.conf.5
COPTS+= -Wall -DLOGIN_CAP
#COPTS+= -DSANITY_CHECK
DPADD+= ${LIBUTIL} ${LIBWRAP}
LDADD+= -lutil -lwrap
.if !defined(RELEASE_CRUNCH)
CFLAGS+=-DINET6 -DIPSEC
DPADD+= ${LIBUTIL} ${LIBWRAP} ${LIBIPSEC}
LDADD+= -lutil -lwrap -lipsec
DPADD+= ${LIBIPSEC}
LDADD+= -lipsec
.endif
.include <bsd.prog.mk>