mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 16:40:31 -04:00
- Move to SNAPSHOT versions of qemu - Remove i386 support temporarily as build is failing on i386 - Change MASTER_SITES to GITHUB - Mark IGNORE for 11.X as it cannot build Position Independent Code on 11 - OPTIONIZE NCURSES for support of both base and ports [1] - Add OPTIONS CAPSTONE and use CAPSTONE from ports - Remove PCAP related patches as was unable to create PANIC while using TSO - Fixes for the RISC-V PLIC that are required to boot FreeBSD/riscv64 HEAD after r362977 PR: 245997 [1] Submitted by: lab+bsd@thinkum.space [1] Reported by: lwhsu jhb
60 lines
1.8 KiB
Text
60 lines
1.8 KiB
Text
--- configure.orig 2020-09-08 20:21:13 UTC
|
|
+++ configure
|
|
@@ -1640,7 +1647,7 @@ if test "$mingw32" = "yes" ; then
|
|
sysconfdir="$prefix"
|
|
local_statedir=
|
|
else
|
|
- mandir="${mandir:-$prefix/share/man}"
|
|
+ mandir="${mandir:-$prefix/man}"
|
|
datadir="${datadir:-$prefix/share}"
|
|
docdir="${docdir:-$prefix/share/doc}"
|
|
bindir="${bindir:-$prefix/bin}"
|
|
@@ -3279,6 +3286,14 @@ if check_include "sys/signal.h" ; then
|
|
fi
|
|
|
|
##########################################
|
|
+# getifaddrs (for tests/test-io-channel-socket )
|
|
+
|
|
+have_ifaddrs_h=yes
|
|
+if ! check_include "ifaddrs.h" ; then
|
|
+ have_ifaddrs_h=no
|
|
+fi
|
|
+
|
|
+##########################################
|
|
# VTE probe
|
|
|
|
if test "$vte" != "no"; then
|
|
@@ -4870,14 +4885,6 @@ if test "$docs" != "no" ; then
|
|
fi
|
|
if has makeinfo && has pod2man && test "$sphinx_ok" = "yes"; then
|
|
docs=yes
|
|
- else
|
|
- if test "$docs" = "yes" ; then
|
|
- if has $sphinx_build && test "$sphinx_ok" != "yes"; then
|
|
- echo "Warning: $sphinx_build exists but it is either too old or uses too old a Python version" >&2
|
|
- fi
|
|
- feature_not_found "docs" "Install texinfo, Perl/perl-podlators and a Python 3 version of python-sphinx"
|
|
- fi
|
|
- docs=no
|
|
fi
|
|
fi
|
|
|
|
@@ -4993,7 +5000,7 @@ fi
|
|
|
|
# check for libusb
|
|
if test "$libusb" != "no" ; then
|
|
- if $pkg_config --atleast-version=1.0.13 libusb-1.0; then
|
|
+ if $pkg_config libusb-1.0; then
|
|
libusb="yes"
|
|
libusb_cflags=$($pkg_config --cflags libusb-1.0)
|
|
libusb_libs=$($pkg_config --libs libusb-1.0)
|
|
@@ -6864,6 +6927,9 @@ fi
|
|
# if this macro is set.
|
|
if test "$have_fsxattr" = "yes" ; then
|
|
echo "HAVE_FSXATTR=y" >> $config_host_mak
|
|
+fi
|
|
+if test "$have_ifaddrs_h" = "yes" ; then
|
|
+ echo "HAVE_IFADDRS_H=y" >> $config_host_mak
|
|
fi
|
|
if test "$have_copy_file_range" = "yes" ; then
|
|
echo "HAVE_COPY_FILE_RANGE=y" >> $config_host_mak
|