Build libwrap - the core to tcp_wrappers.
This commit is contained in:
parent
5d089cad7e
commit
f3fc2030ea
@ -1,5 +1,5 @@
|
||||
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||||
# $Id: Makefile,v 1.86 1998/11/29 02:47:52 bde Exp $
|
||||
# $Id: Makefile,v 1.87 1998/12/17 23:02:11 dfr Exp $
|
||||
|
||||
# To satisfy shared library or ELF linkage when only the libraries being
|
||||
# built are visible:
|
||||
@ -25,7 +25,7 @@ SUBDIR= ${_csu} libcom_err ${_libcrypt} ${_libm} libmd libmytinfo \
|
||||
libcompat libcurses libdevstat libdisk libedit libf2c libfetch \
|
||||
libftpio libgnumalloc ${_libio} libipx libkvm libopie libpam \
|
||||
libpcap libresolv librpcsvc libss libstand \
|
||||
${_libtelnet} libutil ${_libvgl} libxpg4 liby libz
|
||||
${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz
|
||||
|
||||
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
|
||||
_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
|
||||
|
29
lib/libwrap/Makefile
Normal file
29
lib/libwrap/Makefile
Normal file
@ -0,0 +1,29 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
MAINTAINER=markm@FreeBSD.org
|
||||
|
||||
LIB= wrap
|
||||
MAN3= hosts_access.3
|
||||
MAN5= hosts_access.5 hosts_options.5
|
||||
|
||||
.PATH: ${.CURDIR}/../../contrib/tcp_wrappers
|
||||
|
||||
CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
|
||||
-DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \
|
||||
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
|
||||
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
|
||||
-DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME
|
||||
|
||||
SRCS= clean_exit.c diag.c eval.c fix_options.c fromhost.c \
|
||||
hosts_access.c hosts_ctl.c misc.c myvsyslog.c options.c \
|
||||
percent_m.c percent_x.c refuse.c rfc931.c shell_cmd.c \
|
||||
socket.c tli.c update.c workarounds.c
|
||||
|
||||
beforeinstall:
|
||||
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
||||
${.CURDIR}/../../contrib/tcp_wrappers/tcpd.h \
|
||||
${DESTDIR}/usr/include
|
||||
|
||||
.include <bsd.lib.mk>
|
Loading…
Reference in New Issue
Block a user