mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 12:40:45 -04:00
- Add arm64 support [1] - Fix segfault on i386 [2] - Switch to USES=compiler:c++14-lang for devel/chromium-gn because chromium needs __builtin_add_overflow and friends to build. Changelog: https://chromium.googlesource.com/chromium/src/+log/60.0.3112.113..61.0.3163.79?pretty=fuller&n=10000 PR: 220291 [1], 221266 [2] Submitted by: Andrew [1] Reported by: Patrick <doctorwhoguy@gmail.com> [2] MFH: 2017Q3
28 lines
790 B
Text
28 lines
790 B
Text
--- ui/gl/BUILD.gn.orig 2017-09-05 21:05:48.000000000 +0200
|
|
+++ ui/gl/BUILD.gn 2017-09-07 01:56:19.612744000 +0200
|
|
@@ -15,7 +15,7 @@
|
|
(target_cpu == "x86" || target_cpu == "x64")
|
|
}
|
|
|
|
-use_egl = is_win || is_android || is_linux || is_fuchsia
|
|
+use_egl = is_win || is_android || is_linux || is_fuchsia || is_bsd
|
|
use_glx = use_x11 || ozone_platform_x11
|
|
|
|
if (is_android) {
|
|
@@ -181,14 +181,14 @@
|
|
"gl_surface_egl.h",
|
|
]
|
|
|
|
- if (is_linux) {
|
|
+ if (is_linux || is_bsd) {
|
|
sources += [
|
|
"gl_image_native_pixmap.cc",
|
|
"gl_image_native_pixmap.h",
|
|
]
|
|
}
|
|
}
|
|
- if (is_android || is_linux) {
|
|
+ if (is_android || is_linux || is_bsd) {
|
|
sources += [
|
|
"gl_implementation_osmesa.cc",
|
|
"gl_implementation_osmesa.h",
|