svn commit: r403446 - head/www/chromium/files

Rene Ladan rene at FreeBSD.org
Thu Dec 10 08:37:52 UTC 2015


Author: rene
Date: Thu Dec 10 08:37:50 2015
New Revision: 403446
URL: https://svnweb.freebsd.org/changeset/ports/403446

Log:
  www/chromium: fix build on 9amd64, regression-tested on 10i386
  
  MFH:		2015Q4

Deleted:
  head/www/chromium/files/patch-third_party__WebKit__Source__platform__fonts__FontPlatformData.cpp
Modified:
  head/www/chromium/files/extra-patch-clang
  head/www/chromium/files/extra-patch-gcc

Modified: head/www/chromium/files/extra-patch-clang
==============================================================================
--- head/www/chromium/files/extra-patch-clang	Thu Dec 10 07:20:36 2015	(r403445)
+++ head/www/chromium/files/extra-patch-clang	Thu Dec 10 08:37:50 2015	(r403446)
@@ -242,3 +242,14 @@
  }
  
  bool AudioCodingImpl::RegisterReceiveCodec(AudioDecoder* receive_codec) { 
+--- third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp.orig	2015-10-14 22:17:57.580250000 +0200
++++ third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp	2015-10-14 22:18:13.766229000 +0200
+@@ -358,7 +358,7 @@
+ {
+     RefPtr<SharedBuffer> buffer;
+ 
+-    SkFontTableTag tag = WTF::bswap32(table);
++    SkFontTableTag tag = bswap32(table);
+     const size_t tableSize = m_typeface->getTableSize(tag);
+     if (tableSize) {
+         Vector<char> tableBuffer(tableSize);

Modified: head/www/chromium/files/extra-patch-gcc
==============================================================================
--- head/www/chromium/files/extra-patch-gcc	Thu Dec 10 07:20:36 2015	(r403445)
+++ head/www/chromium/files/extra-patch-gcc	Thu Dec 10 08:37:50 2015	(r403446)
@@ -135,3 +135,25 @@
                              const char* suffix, const char* mode);
  
  struct AsDOT {
+--- v8/src/log-utils.h.orig	2015-10-13 21:04:45.000000000 +0200
++++ v8/src/log-utils.h	2015-10-17 10:17:35.535561000 +0200
+@@ -5,6 +5,9 @@
+ #ifndef V8_LOG_UTILS_H_
+ #define V8_LOG_UTILS_H_
+ 
++#include <cstdarg>
++#include <cstdio>
++
+ #include "src/allocation.h"
+ #include "src/base/platform/mutex.h"
+ #include "src/flags.h"
+--- third_party/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc.orig	2015-10-22 21:00:59.000000000 +0200
++++ third_party/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc	2015-11-01 11:32:36.293750000 +0100
+@@ -11,6 +11,7 @@
+ #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h"
+ 
+ #include <algorithm>
++#include <cstdio>
+ #include <sstream>
+ #include <math.h>
+ #include <stdlib.h>


More information about the svn-ports-all mailing list