This is a major upgrade of the Qt libraries [1], [2]. * People that use upgrading mechanisms with incomplete dependency handling (portmaster & Co) should make sure to manually remove the existing Qt packages to guarantee a safe upgrade. Keep in mind, that Qt does not like if you have an incomplete upgrade. * This version of Qt drops support for OpenSSL 1.0 -- this means that there won't be any binary packages for Qt5 provided by the FreeBSD package builders for FreeBSD 11.x anymore -- and the same for *all* the ports depending on net/qt5-network [3]. If you cannot upgrade to a more recent FreeBSD version (12.x, 13.x), you will need to build Qt5 from ports while switching to an SSL implementation from ports. Big thanks are due for * kai@ for updating webengine (also mikael@) * Felix Palmen for providing LibreSSL support patches * adridg@ and lbartoletti@ for helping me fix the fallout [1] https://www.qt.io/blog/qt-5.15-released [2] https://wiki.qt.io/New_Features_in_Qt_5.15 [3] https://www.freshports.org/net/qt5-network PR: 247010 Exp-run by: antoine
47 lines
1.4 KiB
Text
47 lines
1.4 KiB
Text
--- src/3rdparty/chromium/net/BUILD.gn.orig 2020-04-08 09:41:36 UTC
|
|
+++ src/3rdparty/chromium/net/BUILD.gn
|
|
@@ -103,7 +103,7 @@ net_configs = [
|
|
"//build/config/compiler:wexit_time_destructors",
|
|
]
|
|
|
|
-if (is_linux) {
|
|
+if (is_linux && !is_bsd) {
|
|
net_configs += [ "//build/config/linux:libresolv" ]
|
|
}
|
|
|
|
@@ -1834,6 +1834,17 @@ component("net") {
|
|
]
|
|
}
|
|
|
|
+ if (is_bsd) {
|
|
+ sources -= [
|
|
+ "base/address_tracker_linux.cc",
|
|
+ "base/address_tracker_linux.h",
|
|
+ "base/network_change_notifier_linux.cc",
|
|
+ "base/network_change_notifier_linux.h",
|
|
+ "base/network_interfaces_linux.cc",
|
|
+ "base/network_interfaces_linux.h",
|
|
+ ]
|
|
+ }
|
|
+
|
|
if (is_mac) {
|
|
sources += [
|
|
"base/network_notification_thread_mac.cc",
|
|
@@ -1960,7 +1971,7 @@ component("net") {
|
|
}
|
|
}
|
|
|
|
- if (is_android || is_chromeos) {
|
|
+ if (is_android || is_chromeos || is_bsd) {
|
|
sources += [
|
|
"base/network_change_notifier_posix.cc",
|
|
"base/network_change_notifier_posix.h",
|
|
@@ -1991,7 +2002,7 @@ component("net") {
|
|
}
|
|
|
|
# Use getifaddrs() on POSIX platforms, except Linux and Android.
|
|
- if (is_posix && !is_linux && !is_android) {
|
|
+ if (is_posix && ((!is_linux && !is_android) || (is_bsd))) {
|
|
sources += [
|
|
"base/network_interfaces_getifaddrs.cc",
|
|
"base/network_interfaces_getifaddrs.h",
|