mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 13:10:31 -04:00
Submitted by: cpm Obtained from: https://github.com/cpu82/freebsd-chromium MFH: 2018Q1 Security: https://vuxml.freebsd.org/freebsd/e264e74e-ffe0-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/1d951e85-ffdb-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/82894193-ffd4-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/f8e72cd4-c66a-11e7-bb17-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/3cd46257-bbc5-11e7-a3bc-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/a692bffe-b6ad-11e7-a1c2-e8e0b747a45a.html
29 lines
769 B
Text
29 lines
769 B
Text
--- net/BUILD.gn.orig 2017-12-15 02:04:22.000000000 +0100
|
|
+++ net/BUILD.gn 2017-12-30 02:46:23.419099000 +0100
|
|
@@ -99,7 +99,7 @@
|
|
net_configs += [ "//build/config/linux/gconf" ]
|
|
}
|
|
|
|
-if (is_linux) {
|
|
+if (is_linux && !is_bsd) {
|
|
net_configs += [ "//build/config/linux:libresolv" ]
|
|
}
|
|
|
|
@@ -1954,6 +1954,17 @@
|
|
]
|
|
|
|
sources -= [ "disk_cache/blockfile/file_posix.cc" ]
|
|
+ }
|
|
+
|
|
+ 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",
|
|
+ ]
|
|
+ sources += [ "base/network_interfaces_freebsd.cc" ]
|
|
}
|
|
|
|
if (is_ios || is_mac) {
|