diff options
author | Hiroki Tagato <tagattie@FreeBSD.org> | 2021-11-24 17:28:24 +0900 |
---|---|---|
committer | Hiroki Tagato <tagattie@FreeBSD.org> | 2021-11-24 17:30:52 +0900 |
commit | 4da4f5edbf9de5c4269cf66d70044f4cb3abdc41 (patch) | |
tree | 21363ca7518a943c48bde3a669c78444685f832e /devel/electron12/files/patch-net_BUILD.gn | |
parent | ports-mgmt/octopkg: update description and WWW (diff) |
devel/electron13: update to 13.6.2 (and rename from devel/electron12)
Changelog: https://www.electronjs.org/blog/electron-13-0
Diffstat (limited to 'devel/electron12/files/patch-net_BUILD.gn')
-rw-r--r-- | devel/electron12/files/patch-net_BUILD.gn | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/electron12/files/patch-net_BUILD.gn b/devel/electron12/files/patch-net_BUILD.gn deleted file mode 100644 index 4495600775dd..000000000000 --- a/devel/electron12/files/patch-net_BUILD.gn +++ /dev/null @@ -1,55 +0,0 @@ ---- net/BUILD.gn.orig 2021-04-14 01:08:52 UTC -+++ net/BUILD.gn -@@ -100,7 +100,7 @@ net_configs = [ - "//build/config/compiler:wexit_time_destructors", - ] - --if (is_linux || is_chromeos) { -+if ((is_linux || is_chromeos) && !is_bsd) { - net_configs += [ "//build/config/linux:libresolv" ] - } - -@@ -1252,6 +1252,16 @@ 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" -+ ] -+ } -+ - if (is_mac) { - sources += [ - "base/network_notification_thread_mac.cc", -@@ -1388,7 +1398,7 @@ component("net") { - } - } - -- if (is_android || is_chromeos_ash) { -+ if (is_android || is_chromeos_ash || is_bsd) { - sources += [ - "base/network_change_notifier_posix.cc", - "base/network_change_notifier_posix.h", -@@ -1421,7 +1431,7 @@ component("net") { - } - - # Use getifaddrs() on POSIX platforms, except Linux. -- if (is_posix && !is_linux && !is_chromeos) { -+ if ((is_posix && !is_linux && !is_chromeos) || is_bsd) { - sources += [ - "base/network_interfaces_getifaddrs.cc", - "base/network_interfaces_getifaddrs.h", -@@ -4755,7 +4765,7 @@ test("net_unittests") { - } - - # Use getifaddrs() on POSIX platforms, except Linux and Android. -- if (is_posix && !is_linux && !is_chromeos && !is_android) { -+ if ((is_posix && !is_linux && !is_chromeos && !is_android) || is_bsd) { - sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ] - } - |