diff options
author | rene <rene@FreeBSD.org> | 2015-01-29 15:29:29 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2015-01-29 15:29:29 +0800 |
commit | a90fa4b62c4b38db83086b72bb4789968f6061eb (patch) | |
tree | 5fe55f463bf974ce0da9eb50e53e651040b7cd8b | |
parent | 6bb62e6a62048d6dddf3dbe57351261b1c123f0d (diff) | |
download | freebsd-ports-gnome-a90fa4b62c4b38db83086b72bb4789968f6061eb.tar.gz freebsd-ports-gnome-a90fa4b62c4b38db83086b72bb4789968f6061eb.tar.zst freebsd-ports-gnome-a90fa4b62c4b38db83086b72bb4789968f6061eb.zip |
www/chromium: fix build with GCC
This does not fix the build on 8.X yet, which misses pthread_getthreadid_np()
MFH: 2015Q1
-rw-r--r-- | www/chromium/files/extra-patch-gcc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/www/chromium/files/extra-patch-gcc b/www/chromium/files/extra-patch-gcc index b5d703e412d6..df5060636da4 100644 --- a/www/chromium/files/extra-patch-gcc +++ b/www/chromium/files/extra-patch-gcc @@ -76,3 +76,13 @@ #include <cstddef> #include <string> +--- v8/src/base/platform/platform.h.orig 2015-01-27 03:22:59.000000000 +0100 ++++ v8/src/base/platform/platform.h 2015-01-28 18:37:43.268781292 +0100 +@@ -22,6 +22,7 @@ + #define V8_BASE_PLATFORM_PLATFORM_H_ + + #include <cstdarg> ++#include <cstdio> + #include <string> + #include <vector> + |