p11: Avoid checking for the existence of files in /dev to detect system
features.
This commit is contained in:
parent
7f276b7ca3
commit
a1e3f2d7da
1 changed files with 16 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.20 2014/01/03 04:30:26 dholland Exp $
|
# $NetBSD: Makefile,v 1.21 2021/11/09 11:28:56 nia Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= p11-2.10i
|
DISTNAME= p11-2.10i
|
||||||
|
@ -19,21 +19,26 @@ USE_TOOLS+= gmake
|
||||||
PLIST_VARS+= bpf tap tun
|
PLIST_VARS+= bpf tap tun
|
||||||
|
|
||||||
# bfp, tap, and tun tests taken from p11 configure script
|
# bfp, tap, and tun tests taken from p11 configure script
|
||||||
.if exists(/dev/bpf0)
|
.if exists(/usr/include/net/bpf.h)
|
||||||
PLIST.bpf= yes
|
PLIST.bpf= yes
|
||||||
.endif
|
CONFIGURE_ENV+= ac_cv_epp_bpf=yes
|
||||||
.if exists(/dev/tap0) || exists(/dev/net/tun)
|
.else
|
||||||
PLIST.tap= yes
|
CONFIGURE_ENV+= ac_cv_epp_bpf=no
|
||||||
.endif
|
|
||||||
.if exists(/dev/tun) || exists(/dev/tun0) || exists(/dev/net/tun)
|
|
||||||
PLIST.tun= yes
|
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
# Force the bpf, tun, and tap epp backends to be built on DragonFly and fbsd.
|
.if exists(/usr/include/net/if_tap.h)
|
||||||
.if ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD"
|
|
||||||
PLIST.tap= yes
|
PLIST.tap= yes
|
||||||
|
CONFIGURE_ENV+= ac_cv_epp_tap=yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ENV+= ac_cv_epp_tap=no
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if exists(/usr/include/net/if_tun.h) || \
|
||||||
|
exists(/usr/include/linux/if_tun.h)
|
||||||
PLIST.tun= yes
|
PLIST.tun= yes
|
||||||
CONFIGURE_ENV+= ac_cv_epp_bpf=yes ac_cv_epp_tun=yes ac_cv_epp_tap=yes
|
CONFIGURE_ENV+= ac_cv_epp_tun=yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ENV+= ac_cv_epp_tun=no
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
# override MAKEFLAGS in the build and install stages
|
# override MAKEFLAGS in the build and install stages
|
||||||
|
|
Loading…
Reference in a new issue