The recent file descriptor work is significant enough to deserve a
[dragonfly.git] / lib / libwrap / Makefile
1 #
2 # $FreeBSD: src/lib/libwrap/Makefile,v 1.5.2.3 2002/07/22 14:21:50 ru Exp $
3 # $DragonFly: src/lib/libwrap/Makefile,v 1.4 2005/04/21 13:42:34 joerg Exp $
4 #
5
6 LIB=    wrap
7 SHLIB_MAJOR= 4
8 INCS=   tcpd.h
9 MAN=    hosts_access.3
10 MAN+=   hosts_access.5 hosts_options.5
11
12 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
13
14 CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
15         -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
16         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
17         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
18         -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME
19 .if !defined(NOINET6)
20 CFLAGS+=-DINET6
21 .endif
22
23 SRCS=   clean_exit.c diag.c eval.c fix_options.c fromhost.c \
24         hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
25         percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
26         socket.c tli.c update.c workarounds.c libvars.c
27
28 .include <bsd.lib.mk>