diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-02-17 04:02:33 +0800 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2021-02-17 04:02:33 +0800 |
commit | de50a83f2edf0635c19ecbbfcae0204e70e5f138 (patch) | |
tree | 8c429e67c4a41f86158947766ec5724136874402 /net | |
parent | 50c4894a5cb5889dc9eab843e1a50afc3461032a (diff) | |
download | freebsd-ports-gnome-de50a83f2edf0635c19ecbbfcae0204e70e5f138.tar.gz freebsd-ports-gnome-de50a83f2edf0635c19ecbbfcae0204e70e5f138.tar.zst freebsd-ports-gnome-de50a83f2edf0635c19ecbbfcae0204e70e5f138.zip |
net/libdnet: disable useless buildtime check for /dev/bpf presence
Device is not guarateed to exist at package building time.
PR: 238523
Submitted by: rea@FreeBSD.org
Reported by: dweimer@dweimer.net
Approved by: maintainer timeout (onatan@gmail.com, 1.5 years)
MFH: 2021Q1
Diffstat (limited to 'net')
-rw-r--r-- | net/libdnet/files/patch-configure.ac | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/net/libdnet/files/patch-configure.ac b/net/libdnet/files/patch-configure.ac new file mode 100644 index 000000000000..6a812f27b63d --- /dev/null +++ b/net/libdnet/files/patch-configure.ac @@ -0,0 +1,43 @@ +Do not invasively check for BPF (Ethernet check queries presence +of /dev/bpfX): we know that FreeBSD has BPF and ports can be *built* +inside infrastructure that has no such /dev entries; like a jail +without devfs configured to unhide BPF devices. + +The presence of the net/bpf.h is checked in configure earlier, +so sanity checks for the build environment will still be present. + +Macro HAVE_BSD_BPF won't be defined after this modification, +but as of libdnet-1.13 it is not used at all inside libdnet's code. + +FreeBSD PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238523 +Origin: rea@FreeBSD.org +--- configure.ac.old 2019-06-30 21:36:25.906488000 +0300 ++++ configure.ac 2019-06-30 21:39:21.116185000 +0300 +@@ -203,7 +203,6 @@ + AC_REPLACE_FUNCS(err strlcat strlcpy strsep) + + dnl Checks for other system-specific jonks. +-AC_DNET_BSD_BPF + AC_DNET_RAWIP_HOST_OFFLEN + + dnl Check for arp interface. +@@ -219,18 +218,7 @@ + (exit 1); exit 1; + fi + +-dnl Check for Ethernet interface. +-if test "$ac_cv_dnet_bsd_bpf" = yes ; then +- AC_LIBOBJ([eth]) +-else +- echo "|------------------------------------------|" +- echo "|No suitable Ethernet interface found. Most|" +- echo "|probably you are not running the FreeBSD |" +- echo "|OS. Please consider using this version |" +- echo "|of libdnet with the FreeBSD system |" +- echo "|------------------------------------------|" +- (exit 1); exit 1; +-fi ++AC_LIBOBJ([eth]) + + dnl Check for firewall interface. + if test "$ac_cv_header_net_pfvar_h" = yes ; then |