]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libwrap/Makefile
This commit was generated by cvs2svn to compensate for changes in r163976,
[FreeBSD/FreeBSD.git] / lib / libwrap / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 .include <bsd.own.mk>
6
7 LIB=    wrap
8 SHLIB_MAJOR= 4
9 INCS=   tcpd.h
10 MAN=    hosts_access.3
11 MAN+=   hosts_access.5 hosts_options.5
12 MLINKS= hosts_access.3 hosts_ctl.3 hosts_access.3 request_init.3 \
13         hosts_access.3 request_set.3
14
15 .PATH:  ${.CURDIR}/../../contrib/tcp_wrappers
16
17 CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
18         -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
19         -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
20         -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
21         -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -DUSE_STRSEP -DPROCESS_OPTIONS
22 .if ${MK_NIS} == "no"
23 CFLAGS+= -DUSE_GETDOMAIN
24 .endif
25 .if ${MK_INET6_SUPPORT} != "no"
26 CFLAGS+=-DINET6
27 .endif
28
29 SRCS=   clean_exit.c diag.c eval.c fix_options.c fromhost.c \
30         hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
31         percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
32         socket.c tli.c update.c workarounds.c libvars.c
33
34 .include <bsd.lib.mk>