blob: 86d119d53e0fb63152b5a1ca1834113d16fac170 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $NetBSD: builtin.mk,v 1.2 2004/03/29 05:43:35 jlam Exp $
.if !defined(IS_BUILTIN.tcp_wrappers)
IS_BUILTIN.tcp_wrappers= no
. if exists(/usr/include/tcpd.h)
IS_BUILTIN.tcp_wrappers= yes
. endif
.endif # IS_BUILTIN.tcp_wrappers
USE_BUILTIN.tcp_wrappers?= ${IS_BUILTIN.tcp_wrappers}
|