mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
78 lines
2 KiB
Text
78 lines
2 KiB
Text
--- net/BUILD.gn.orig 2024-08-14 20:55:08 UTC
|
|
+++ net/BUILD.gn
|
|
@@ -123,7 +123,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" ]
|
|
}
|
|
|
|
@@ -1246,6 +1246,19 @@ component("net") {
|
|
]
|
|
}
|
|
|
|
+ if (is_bsd) {
|
|
+ sources -= [
|
|
+ "base/address_map_cache_linux.cc",
|
|
+ "base/address_map_cache_linux.h",
|
|
+ "base/address_map_linux.cc",
|
|
+ "base/address_map_linux.h",
|
|
+ "base/address_tracker_linux.cc",
|
|
+ "base/address_tracker_linux.h",
|
|
+ "base/network_change_notifier_linux.cc",
|
|
+ "base/network_interfaces_linux.cc",
|
|
+ ]
|
|
+ }
|
|
+
|
|
if (is_mac) {
|
|
sources += [
|
|
"base/network_notification_thread_mac.cc",
|
|
@@ -1407,7 +1420,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",
|
|
@@ -2883,7 +2896,7 @@ test("net_unittests") {
|
|
]
|
|
}
|
|
|
|
- if (is_linux || is_chromeos) {
|
|
+ if ((is_linux || is_chromeos) && !is_bsd) {
|
|
sources += [
|
|
"base/address_tracker_linux_unittest.cc",
|
|
"base/network_interfaces_linux_unittest.cc",
|
|
@@ -2974,6 +2987,10 @@ test("net_unittests") {
|
|
]
|
|
}
|
|
|
|
+ if (is_bsd) {
|
|
+ deps += [ "//sandbox/policy" ]
|
|
+ }
|
|
+
|
|
if (enable_websockets) {
|
|
deps += [ "//net/server:tests" ]
|
|
}
|
|
@@ -3034,7 +3051,7 @@ test("net_unittests") {
|
|
]
|
|
}
|
|
|
|
- if (is_linux || is_chromeos) {
|
|
+ if ((is_linux || is_chromeos) && !is_bsd) {
|
|
sources += [ "tools/quic/quic_simple_server_test.cc" ]
|
|
}
|
|
|
|
@@ -3173,7 +3190,7 @@ test("net_unittests") {
|
|
}
|
|
|
|
# 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_unittest.cc" ]
|
|
}
|
|
|