Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Dec 2015 09:06:09 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r403447 - branches/2015Q4/www/chromium/files
Message-ID:  <201512100906.tBA969Uh038227@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Thu Dec 10 09:06:09 2015
New Revision: 403447
URL: https://svnweb.freebsd.org/changeset/ports/403447

Log:
  MFH: r403446
  
  www/chromium: fix build on 9amd64, regression-tested on 10i386
  Approved by:	portmgr (erwin)

Deleted:
  branches/2015Q4/www/chromium/files/patch-third_party__WebKit__Source__platform__fonts__FontPlatformData.cpp
Modified:
  branches/2015Q4/www/chromium/files/extra-patch-clang
  branches/2015Q4/www/chromium/files/extra-patch-gcc
Directory Properties:
  branches/2015Q4/   (props changed)

Modified: branches/2015Q4/www/chromium/files/extra-patch-clang
==============================================================================
--- branches/2015Q4/www/chromium/files/extra-patch-clang	Thu Dec 10 08:37:50 2015	(r403446)
+++ branches/2015Q4/www/chromium/files/extra-patch-clang	Thu Dec 10 09:06:09 2015	(r403447)
@@ -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: branches/2015Q4/www/chromium/files/extra-patch-gcc
==============================================================================
--- branches/2015Q4/www/chromium/files/extra-patch-gcc	Thu Dec 10 08:37:50 2015	(r403446)
+++ branches/2015Q4/www/chromium/files/extra-patch-gcc	Thu Dec 10 09:06:09 2015	(r403447)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512100906.tBA969Uh038227>