mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
27 lines
383 B
Makefile
27 lines
383 B
Makefile
.include <src.opts.mk>
|
|
|
|
CONFS= inetd.conf
|
|
PROG= inetd
|
|
PACKAGE= inetd
|
|
MAN= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
SRCS= inetd.c builtins.c
|
|
|
|
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>
|