mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 11:40:31 -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
22 lines
520 B
C++
22 lines
520 B
C++
--- base/process/process_metrics_posix.cc.orig 2017-09-05 21:05:11.000000000 +0200
|
|
+++ base/process/process_metrics_posix.cc 2017-09-11 19:41:06.103369000 +0200
|
|
@@ -16,6 +16,8 @@
|
|
|
|
#if defined(OS_MACOSX)
|
|
#include <malloc/malloc.h>
|
|
+#elif defined(OS_BSD)
|
|
+#include <stdlib.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
@@ -103,8 +105,9 @@
|
|
#endif
|
|
#elif defined(OS_FUCHSIA)
|
|
// TODO(fuchsia): Not currently exposed. https://crbug.com/735087.
|
|
- return 0;
|
|
+ NOTIMPLEMENTED();
|
|
#endif
|
|
+ return 0;
|
|
}
|
|
|
|
} // namespace base
|