1.include <src.opts.mk> 2 3PACKAGE= tcpd 4 5CONFS= hosts.allow 6LIB= wrap 7SHLIB_MAJOR= 6 8INCS= tcpd.h 9 10MAN= hosts_access.3 11MLINKS= hosts_access.3 hosts_ctl.3 \ 12 hosts_access.3 request_init.3 \ 13 hosts_access.3 request_set.3 14 15MANNODEV= hosts_access.5 hosts_options.5 16MANNODEVLINKS= hosts_options.5 hosts.allow.5 17 18.PATH: ${SRCTOP}/contrib/tcp_wrappers 19 20CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \ 21 -DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" -DPROCESS_OPTIONS \ 22 -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \ 23 -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \ 24 -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -DUSE_STRSEP -DPROCESS_OPTIONS 25.if ${MK_NIS} == "no" 26CFLAGS+= -DUSE_GETDOMAIN 27.endif 28.if ${MK_INET6_SUPPORT} != "no" 29CFLAGS+=-DINET6 30.endif 31 32WARNS?= 0 33 34SRCS= clean_exit.c diag.c eval.c fix_options.c fromhost.c \ 35 hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \ 36 percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \ 37 socket.c tli.c update.c workarounds.c libvars.c 38 39.include <bsd.lib.mk> 40