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

Rene Ladan rene at FreeBSD.org
Thu Sep 12 09:52:37 UTC 2013


Author: rene
Date: Thu Sep 12 09:52:36 2013
New Revision: 327048
URL: http://svnweb.freebsd.org/changeset/ports/327048

Log:
  Try to fix build on CURRENT with libc++ as default.
  
  Reported by:	pkg-fallout

Added:
  head/www/chromium/files/patch-base__process__internal_linux.h   (contents, props changed)
  head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc   (contents, props changed)
Modified:
  head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc

Added: head/www/chromium/files/patch-base__process__internal_linux.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chromium/files/patch-base__process__internal_linux.h	Thu Sep 12 09:52:36 2013	(r327048)
@@ -0,0 +1,11 @@
+--- ./base/process/internal_linux.h.orig	2013-09-03 09:09:03.000000000 +0200
++++ ./base/process/internal_linux.h	2013-09-07 21:29:08.000000000 +0200
+@@ -10,6 +10,8 @@
+ 
+ #include "base/files/file_path.h"
+ 
++#include <unistd.h> /* pid_t */
++
+ namespace base {
+ namespace internal {
+ 

Added: head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc	Thu Sep 12 09:52:36 2013	(r327048)
@@ -0,0 +1,13 @@
+--- ./base/process/process_iterator_freebsd.cc.orig	2013-09-03 09:09:03.000000000 +0200
++++ ./base/process/process_iterator_freebsd.cc	2013-09-07 21:31:37.000000000 +0200
+@@ -6,6 +6,10 @@
+ 
+ #include <sys/sysctl.h>
+ 
++/* getuid() */
++#include <unistd.h>
++#include <sys/types.h>
++
+ #include "base/logging.h"
+ #include "base/strings/string_util.h"
+ 

Modified: head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc
==============================================================================
--- head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc	Thu Sep 12 09:45:44 2013	(r327047)
+++ head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc	Thu Sep 12 09:52:36 2013	(r327048)
@@ -1,11 +1,13 @@
---- base/process/process_metrics_freebsd.cc.orig	2013-08-17 19:21:48.000000000 +0300
-+++ base/process/process_metrics_freebsd.cc	2013-08-17 19:22:18.000000000 +0300
-@@ -4,6 +4,8 @@
+--- ./base/process/process_metrics_freebsd.cc.orig	2013-09-03 09:09:03.000000000 +0200
++++ ./base/process/process_metrics_freebsd.cc	2013-09-07 21:30:29.000000000 +0200
+@@ -4,6 +4,10 @@
  
  #include "base/process/process_metrics.h"
  
 +#include "base/sys_info.h"
 +
++#include <unistd.h> /* getpagesize() */
++
  namespace base {
  
  ProcessMetrics::ProcessMetrics(ProcessHandle process)


More information about the svn-ports-all mailing list