From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 01:36:45 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6D1456A for ; Sun, 31 Aug 2014 01:36:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8C8112EC for ; Sun, 31 Aug 2014 01:36:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s7V1aib7074522 for ; Sun, 31 Aug 2014 01:36:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] New: www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Sun, 31 Aug 2014 01:36:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 01:36:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 Bug ID: 193187 Summary: www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: chromium@FreeBSD.org Reporter: jbeich@vfemail.net Created attachment 146582 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146582&action=edit mark default ports include path as -isystem Locally updating multimedia/ffmpeg to 2.3.3 causes one more build failure. ../../media/ffmpeg/ffmpeg_common.cc:21:1: error: static_assert failed "decoder_buffer_padding_size_does_not_fit_ffmpeg_requirement" COMPILE_ASSERT(DecoderBuffer::kPaddingSize >= FF_INPUT_BUFFER_PADDING_SIZE, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../base/macros.h:160:35: note: expanded from macro 'COMPILE_ASSERT' #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg) ^ ~~~~ 1 error generated. $ fgrep define\ FF_INPUT_BUFFER_PADDING_SIZE ../../third_party/ffmpeg/libavcodec/avcodec.h #define FF_INPUT_BUFFER_PADDING_SIZE 16 $ fgrep define\ FF_INPUT_BUFFER_PADDING_SIZE /usr/local/include/libavcodec/avcodec.h #define FF_INPUT_BUFFER_PADDING_SIZE 32 with minimized test case like this $ mkdir -p bundled/libavcodec system/libavcodec $ touch bundled/libavcodec/avcodec.h system/libavcodec/avcodec.h $ echo '#include ' | cc -E - -I system -I bundled | fgrep avcodec.h # 1 "system/libavcodec/avcodec.h" 1 which can be fixed by pushing include path down the stack using either -isystem or -idirafter $ echo '#include ' | cc -E - -I system -I bundled -isystem system | fgrep avcodec.h # 1 "bundled/libavcodec/avcodec.h" 1 "-I" order issue stems from inconsistent defaults. Almost any dependency poisons the build with -I/usr/local/include. And upstream often hardcodes the path. - having /usr/local/bin in PATH is OK - having /usr/local/man in MANPATH is OK - having /usr/local/info in INFOPATH is OK - having /usr/local/etc/mail.rc in MAILRC is OK - having /usr/local/bin/xauth in ssh(1) is OK - having /usr/local/etc/rc.d in rc.conf is OK - having /usr/local/etc/devd in devd.conf is OK - having /usr/local/etc/libmap.d in libmap.conf is OK ... - but /usr/local/include in CPATH is NOT - but /usr/local/lib in LIBRARY_PATH is NOT -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 17:14:50 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93A07181 for ; Sun, 31 Aug 2014 17:14:50 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7AD7A1E60 for ; Sun, 31 Aug 2014 17:14:50 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s7VHEoPn044383 for ; Sun, 31 Aug 2014 17:14:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192749] chromium 36.0.1985.143 shows normally hidden window manager decorations Date: Sun, 31 Aug 2014 17:14:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jacob.frelinger@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 17:14:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192749 Jacob Frelinger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jacob.frelinger@gmail.com --- Comment #6 from Jacob Frelinger --- I'm getting the same problem on chromium-37.0.2062.94. If I select and unselect use system title bar and borders it goes away, but restarting chrome has the double window decorations again. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 21:43:08 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2678C551 for ; Sun, 31 Aug 2014 21:43:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07F2A1D8A for ; Sun, 31 Aug 2014 21:43:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s7VLh73l062187 for ; Sun, 31 Aug 2014 21:43:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Sun, 31 Aug 2014 21:43:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bkarp@cs.ucl.ac.uk X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 21:43:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 bkarp@cs.ucl.ac.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bkarp@cs.ucl.ac.uk --- Comment #29 from bkarp@cs.ucl.ac.uk --- I'm running 10.0-RELEASE, updated with freebsd-update to p7: FreeBSD x.y.z 10.0-RELEASE-p7 FreeBSD 10.0-RELEASE-p7 #0: Tue Jul 8 06:37:44 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 When I try to build Chromium 37.0.2062.94 using the latest revision of the port (at this writing) and clang 33 (default 10.0-RELEASE compiler), I get the same compilation errors that Robert Cina initially reported with an earlier revision of the port. In particular, the first compilation error I encounter is: [7399/14924] CXX obj/third_party/WebKi...ebcore_generated.V8ArrayBufferCustom.o FAILED: clang++35 -MMD -MF obj/third_party/WebKit/Source/bindings/v8/custom/webcore_generated.V8ArrayBufferCustom.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DBLINK_IMPLEMENTATION=1 -DINSIDE_BLINK -DUSE_SYSTEM_ZLIB -DENABLE_CUSTOM_SCHEME_HANDLER=0 -DENABLE_SVG_FONTS=1 -DWTF_USE_CONCATENATED_IMPULSE_RESPONSES=1 -DENABLE_INPUT_MULTIPLE_FIELDS_UI=1 -DENABLE_MEDIA_CAPTURE=0 -DENABLE_WEB_AUDIO=1 -DWTF_USE_WEBAUDIO_FFMPEG=1 -DENABLE_OPENTYPE_VERTICAL=1 -DWTF_USE_DEFAULT_RENDER_THEME=1 -DU_USING_ICU_NAMESPACE=0 -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DENABLE_WEBP -DUSE_SYSTEM_LIBXML -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/libevent/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen -I../../third_party/WebKit/Source -Igen/blink/core -Igen/blink/modules -Igen/blink/bindings/core/v8 -Igen/blink/bindings/modules/v8 -Igen/blink -I../.. -I../../skia/config -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../third_party/angle/include -I../../third_party/ffmpeg -I../../third_party/WebKit -I../../third_party/ots/include -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -I../../third_party/iccjpeg -I../../third_party/npapi -I../../third_party/npapi/bindings -I../../third_party/qcms/src -I../../third_party/sqlite -I../../v8/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -fcolor-diagnostics -fno-strict-aliasing -Wglobal-constructors -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/libpng15 -I/usr/local/include/libxml2 -I/usr/local/include -I/usr/local/include/libxml2 -Wexit-time-destructors -m64 -march=x86-64 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../third_party/WebKit/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp -o obj/third_party/WebKit/Source/bindings/v8/custom/webcore_generated.V8ArrayBufferCustom.o In file included from ../../third_party/WebKit/Source/bindings/v8/custom/V8ArrayBufferCustom.cpp:32: In file included from ../../third_party/WebKit/Source/bindings/v8/custom/V8ArrayBufferCustom.h:29: In file included from ../../third_party/WebKit/Source/bindings/v8/V8Binding.h:35: In file included from ../../third_party/WebKit/Source/bindings/v8/DOMWrapperWorld.h:34: In file included from ../../third_party/WebKit/Source/bindings/v8/ScriptState.h:8: ../../third_party/WebKit/Source/bindings/v8/ScopedPersistent.h:61:60: error: no type named 'WeakCallbackData' in namespace 'v8' void setWeak(P* parameters, void (*callback)(const v8::WeakCallbackData&)) ~~~~^ ../../third_party/WebKit/Source/bindings/v8/ScopedPersistent.h:61:76: error: expected ')' void setWeak(P* parameters, void (*callback)(const v8::WeakCallbackData&)) ^ ../../third_party/WebKit/Source/bindings/v8/ScopedPersistent.h:61:49: note: to match this '(' void setWeak(P* parameters, void (*callback)(const v8::WeakCallbackData&)) [and the others continue as in Robert's original report...] Note that none of these compilation errors have to do with GL-related types (which others seemed to have trouble with later in the comment history). Rather, they seem to do with clang not finding type definitions in the v8 namespace while attempting to compile WebKit. My initial thought was that this might be some sort of bug in clang 33 tickled by the Chromium source. So apart from "stock" clang (33), I then tried building with lang/clang34 and lang/clang35 (by using portupgrade with -M "CC=clang34 CXX=clang++34"). Alas, I get the same compilation errors with each. And I've verified with ps that I'm successfully causing the build to use these various versions of clang. Robert: did you make any changes to your build other than updating to the latest revision of the port? Did you manually modify the Makefile to build with gcc47? Or did you have success building with the stock 10.0-RELEASE clang (33)? Anyone else seeing the compilation errors that Robert first did and I still am? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 21:47:26 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D487903; Sun, 31 Aug 2014 21:47:26 +0000 (UTC) Received: from beefy4.isc.freebsd.org (beefy4.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:3b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46AE11DA8; Sun, 31 Aug 2014 21:47:26 +0000 (UTC) Received: from beefy4.isc.freebsd.org (localhost [127.0.0.1]) by beefy4.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id s7VLlQSw043148; Sun, 31 Aug 2014 21:47:26 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy4.isc.freebsd.org (8.14.9/8.14.9/Submit) id s7VLlQKM043132; Sun, 31 Aug 2014 21:47:26 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sun, 31 Aug 2014 21:47:26 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201408312147.s7VLlQKM043132@beefy4.isc.freebsd.org> To: chromium@FreeBSD.org Subject: [package - 10i386-default-ssp][www/chromium] Failed for chromium-37.0.2062.94 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 21:47:26 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: chromium@FreeBSD.org Last committer: rene@FreeBSD.org Ident: $FreeBSD: head/www/chromium/Makefile 366226 2014-08-26 17:09:02Z rene $ Log URL: http://beefy4.isc.freebsd.org/data/10i386-default-ssp/2014-08-31_16h10m39s/logs/chromium-37.0.2062.94.log Build URL: http://beefy4.isc.freebsd.org/build.html?mastername=10i386-default-ssp&build=2014-08-31_16h10m39s Log: ====>> Building www/chromium build started at Sun Aug 31 21:35:05 UTC 2014 port directory: /usr/ports/www/chromium building for: FreeBSD pkg.FreeBSD.org 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 i386 maintained by: chromium@FreeBSD.org Makefile ident: $FreeBSD: head/www/chromium/Makefile 366226 2014-08-26 17:09:02Z rene $ Poudriere version: 3.1-pre Host OSVERSION: 1100027 Jail OSVERSION: 1000510 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=1000510 UNAME_v=FreeBSD 10.0-RELEASE-p3 UNAME_r=10.0-RELEASE-p3 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM=screen MASTERMNT=/usr/local/poudriere/data/.m/10i386-default-ssp/ref PKG_EXT=txz FORCE_PACKAGE=yes PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNG=1 PKGNAME=chromium-37.0.2062.94 PKG_DELETE=/usr/local/sbin/pkg-static delete -y -f PKG_ADD=/usr/local/sbin/pkg-static add OLDPWD=/root PWD=/usr/local/poudriere/data/.m/10i386-default-ssp/ref/.p/pool MASTERNAME=10i386-default-ssp USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes PKG_VERSION=/.p/pkg-static version PKG_BIN=/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for chromium-37.0.2062.94: CODECS=on: Compile and enable patented codecs like H.264 DEBUG=off: Build with debugging support GCONF=on: GConf configuration backend support PULSEAUDIO=off: PulseAudio sound server support TEST=off: Build and/or run tests ===> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" CC="cc" CXX="c++" GYP_GENERATORS=ninja GYP_DEFINES="clang_use_chrome_plugins=0 linux_breakpad=0 linux_use_heapchecker=0 linux_strip_binary=1 test_isolation_mode=noop disable_nacl=1 enable_one_click_signin=1 enable_openmax=1 enable_webrtc=1 werror= no_gc_sections=1 os_ver=1000510 prefix_dir=/usr/local python_ver=2.7 use_allocator=none use_cups=1 linux_link_gsettings=1 linux_link_libpci=1 linux_link_libspeechd=1 libspeechd_h_prefix=speech-dispatcher/ usb_ids_path=/usr/local/share/usbids/usb.ids want_separate_host_toolset=0 use_system_bzip2=1 use_system_flac=1 use_system_harfbuzz=1 use_system_icu=1 use_system_jsoncpp=1 use_system_libevent=1 use_system_libexif=1 use_system_libjpeg=1 use_system_libpng=1 use_system_libusb=1 use_system_libwebp=1 use_system_libxml=1 use_system_libxslt=1 use_syst em_minizip=1 use_system_nspr=1 use_system_openssl=1 use_system_protobuf=1 use_system_re2=1 use_system_snappy=1 use_system_speex=1 use_system_xdg_utils=1 use_system_yasm=1 use_system_zlib=1 flapper_version_h_file='/wrkdirs/usr/ports/www/chromium/work/chromium-37.0.2062.94/flapper_version.h' google_api_key=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 google_default_client_id=996322985003.apps.googleusercontent.com google_default_client_secret=IR1za9-1VK0zZ0f_O8MVFicn ffmpeg_branding=Chrome proprietary_codecs=1 use_gconf=1 use_pulseaudio=0 disable_sse2=1 clang=1" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" PKG_CONFIG=pkgconf ac_cv_path_PERL=/usr/local/bin/perl ac_cv_path_PERL_PATH=/usr/local/bin/perl PYTHON="/usr/local/bin/python2.7" AR=/usr/bin/ar CFLAGS="-O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing" CPPFLAGS= "" CXXFLAGS="-O2 -pipe -fno-stack-protector! -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing" LDFLAGS=" -Wl,-rpath,/usr/lib:/usr/local/lib -fstack-protector" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh PATH=/usr/local/libexec/ccache:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin CCACHE_DIR="/root/.ccache" --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" BUILDTYPE=Release GPERF="/usr/local/bin/gperf" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" OPENSSLLIB=/usr/lib OPENSSLINC=/usr/include OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES DESTDIR=/wrkdirs/usr/ports/www/chromium/work/stage PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -Wl,-rpath,/usr/lib:/usr/local/lib -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O 2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing" MANPREFIX="/usr/local" PATH=/usr/local/libexec/ccache:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin CCACHE_DIR="/root/.ccache" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 444" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd10 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_VERSION=python2.7 OSREL=10.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PERL_VERSION=5.16.3 PERL_VER=5.16 PERL_ARCH=mach PERL5_MAN3=lib/perl5/5.16/man/man3 SITE_PERL=lib/perl5/site_perl/5.16 DOCSDIR="share/doc/chromium" EXAMPLESDIR="share/examples/chromium" DATADIR="share/chromium" WWWDIR="www/chromium" ETCDIR="etc/chromium" --End PLIST_SUB-- --SUB_LIST-- COMMENT="Mostly BSD-licensed web browser based on WebKit and Gtk+" PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/chromium DOCSDIR=/usr/local/share/doc/chromium EXAMPLESDIR=/usr/local/share/examples/chromium WWWDIR=/usr/local/www/chromium ETCDIR=/usr/local/etc/chromium --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 WITH_CCACHE_BUILD=yes CCACHE_DIR=/root/.ccache USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel #### /usr/local/etc/poudriere.d/ssp-make.conf #### WITH_SSP_PORTS=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> chromium-37.0.2062.94 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.7.txz [pkg.FreeBSD.org] Installing pkg-1.3.7... done Message for pkg-1.3.7: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of chromium-37.0.2062.94 =========================================================================== =================================================== =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building => SHA256 Checksum OK for chromium-37.0.2062.94.tar.xz. =========================================================================== =================================================== =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building ===> Extracting for chromium-37.0.2062.94 => SHA256 Checksum OK for chromium-37.0.2062.94.tar.xz. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for chromium-37.0.2062.94 ===> Applying extra patch /usr/ports/www/chromium/files/extra-patch-fixup-execinfo ===> Applying extra patch /usr/ports/www/chromium/files/extra-patch-clang ===> Applying FreeBSD patches for chromium-37.0.2062.94 =========================================================================== In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_validation.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="h ttp://compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS= 1 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_M! ACROS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -W all -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/gles2_cmd_validation.cc -o obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_validation.o In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:10: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6156:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLintptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: note: previous definition is here typedef ptrdiff_t GLintptr; ^ In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:10: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gpu_state_tracer.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http: //compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D __STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACRO! S -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/gpu_state_tracer.cc -o obj/gpu/command_buffer/service/command_buffer_service.gpu_state_tracer.o In file included from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: In file included from ../../gpu/command_buffer/service/context_state.h:14: In file included from ../../gpu/command_buffer/service/query_manager.h:16: In file included from ../../gpu/command_buffer/service/feature_info.h:14: In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLintptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6156:32: note: previous definition is here typedef signed long int GLintptr; ^ In file included from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: In file included from ../../gpu/command_buffer/service/context_state.h:14: In file included from ../../gpu/command_buffer/service/query_manager.h:16: In file included from ../../gpu/command_buffer/service/feature_info.h:14: In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLsizeiptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6157:32: note: previous definition is here typedef signed long int GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_decoder.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http ://compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 - D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACR! OS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/gles2_cmd_decoder.cc -o obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_decoder.o In file included from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:33: In file included from ../../gpu/command_buffer/service/async_pixel_transfer_delegate.h:16: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6156:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLintptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: note: previous definition is here typedef ptrdiff_t GLintptr; ^ In file included from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:33: In file included from ../../gpu/command_buffer/service/async_pixel_transfer_delegate.h:16: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.program_cache.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://c ompress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__S TDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -! DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wn o-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/program_cache.cc -o obj/gpu/command_buffer/service/command_buffer_service.program_cache.o In file included from ../../gpu/command_buffer/service/program_cache.cc:5: In file included from ../../gpu/command_buffer/service/program_cache.h:15: In file included from ../../gpu/command_buffer/service/shader_manager.h:14: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6156:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLintptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: note: previous definition is here typedef ptrdiff_t GLintptr; ^ In file included from ../../gpu/command_buffer/service/program_cache.cc:5: In file included from ../../gpu/command_buffer/service/program_cache.h:15: In file included from ../../gpu/command_buffer/service/shader_manager.h:14: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.program_manager.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http:/ /compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D_ _STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS! -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall - Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/program_manager.cc -o obj/gpu/command_buffer/service/command_buffer_service.program_manager.o In file included from ../../gpu/command_buffer/service/program_manager.cc:19: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLintptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6156:32: note: previous definition is here typedef signed long int GLintptr; ^ In file included from ../../gpu/command_buffer/service/program_manager.cc:19: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLsizeiptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6157:32: note: previous definition is here typedef signed long int GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.memory_program_cache.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="h ttp://compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS= 1 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_M! ACROS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -W all -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/memory_program_cache.cc -o obj/gpu/command_buffer/service/command_buffer_service.memory_program_cache.o In file included from ../../gpu/command_buffer/service/memory_program_cache.cc:5: In file included from ../../gpu/command_buffer/service/memory_program_cache.h:16: In file included from ../../gpu/command_buffer/service/program_cache.h:15: In file included from ../../gpu/command_buffer/service/shader_manager.h:14: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6156:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLintptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: note: previous definition is here typedef ptrdiff_t GLintptr; ^ In file included from ../../gpu/command_buffer/service/memory_program_cache.cc:5: In file included from ../../gpu/command_buffer/service/memory_program_cache.h:16: In file included from ../../gpu/command_buffer/service/program_cache.h:15: In file included from ../../gpu/command_buffer/service/shader_manager.h:14: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.query_manager.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://c ompress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__S TDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -! DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wn o-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/query_manager.cc -o obj/gpu/command_buffer/service/command_buffer_service.query_manager.o In file included from ../../gpu/command_buffer/service/query_manager.cc:5: In file included from ../../gpu/command_buffer/service/query_manager.h:17: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6156:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLintptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: note: previous definition is here typedef ptrdiff_t GLintptr; ^ In file included from ../../gpu/command_buffer/service/query_manager.cc:5: In file included from ../../gpu/command_buffer/service/query_manager.h:17: In file included from ../../gpu/command_buffer/service/gl_utils.h:12: In file included from ../../ui/gl/gl_bindings.h:13: In file included from ../../third_party/mesa/src/include/GL/gl.h:2086: ./../third_party/mesa/src/include/GL/glext.h:6157:32: error: typedef redefinition with different types ('long' vs 'ptrdiff_t' (aka 'int')) typedef signed long int GLsizeiptr; ^ ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: note: previous definition is here typedef ptrdiff_t GLsizeiptr; ^ 2 errors generated. FAILED: c++ -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.texture_manager.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DCR_CLANG_REVISION=209387 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http:/ /compress.googlezip.net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D_ _STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS! -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall - Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration -Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing -Wno-reserved-user-defined-literal -Wno-deprecated-register -momit-leaf-frame-pointer -fcolor-diagnostics -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -Wno-header-guard -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mmmx -m32 -O2 -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wno-unknown-warning-option -fstack-protector -fno-strict-aliasing -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11 -c ../../gpu/command_buffer/service/texture_manager.cc -o obj/gpu/command_buffer/service/command_buffer_service.texture_manager.o In file included from ../../gpu/command_buffer/service/texture_manager.cc:9: In file included from ../../gpu/command_buffer/service/context_state.h:14: In file included from ../../gpu/command_buffer/service/query_manager.h:16: In file included from ../../gpu/command_buffer/service/feature_info.h:14: In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLintptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6156:32: note: previous definition is here typedef signed long int GLintptr; ^ In file included from ../../gpu/command_buffer/service/texture_manager.cc:9: In file included from ../../gpu/command_buffer/service/context_state.h:14: In file included from ../../gpu/command_buffer/service/query_manager.h:16: In file included from ../../gpu/command_buffer/service/feature_info.h:14: In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: typedef redefinition with different types ('ptrdiff_t' (aka 'int') vs 'long') typedef ptrdiff_t GLsizeiptr; ^ ./../third_party/mesa/src/include/GL/glext.h:6157:32: note: previous definition is here typedef signed long int GLsizeiptr; ^ 2 errors generated. ninja: build stopped: subcommand failed. *** Error code 1 Stop. make: stopped in /usr/ports/www/chromium From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 22:33:44 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66CD5834 for ; Sun, 31 Aug 2014 22:33:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E6541293 for ; Sun, 31 Aug 2014 22:33:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s7VMXiGr014892 for ; Sun, 31 Aug 2014 22:33:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Sun, 31 Aug 2014 22:33:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: transitive@gmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 22:33:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 --- Comment #30 from Robert Cina --- I had issues with the Chromium 36 build on my 10-stable system. Tried building using the suggestions in this bug report of changing the makefile to use gcc47 but that didn't solve my issues. However, in the interim, while doing something unrelated I messed my system up and had to reinstall from scratch. After reinstalling, and updating to a 10-stable system I was able to get the stock chromium port to build for version 36 and version 37 without alterations. So chrome works for me now. I really don't know what the cause of my error was or how to track it down since I literally rebuilt my system. Sorry I can't be more helpful. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sun Aug 31 22:44:53 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14BD59A2 for ; Sun, 31 Aug 2014 22:44:53 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D433C1363 for ; Sun, 31 Aug 2014 22:44:52 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s7VMiqSP022852 for ; Sun, 31 Aug 2014 22:44:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192892] www/chromium crashes after installing the "Google Cast" extension! Date: Sun, 31 Aug 2014 22:44:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: miguelmclara@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2014 22:44:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192892 --- Comment #2 from miguelmclara@gmail.com --- Still happens in 37 Building with Debug generates an huge and unusable chrome bin, this is all I could get from gdb Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 814406400 (LWP 101765/chrome)] 0x00000000033a2929 in ?? () (gdb) bt #0 0x00000000033a2929 in ?? () #1 0x00000000033a28f5 in ?? () #2 0x0000000002d9d6a3 in ?? () #3 0x0000000002d96ae2 in ?? () #4 0x0000000002d24d0b in ?? () #5 0x0000000002daabe7 in ?? () #6 0x0000000002da87bf in ?? () #7 0x0000000002dab195 in ?? () #8 0x0000000002db659a in ?? () #9 0x0000000002db5e0f in ?? () #10 0x00000000022976ce in ?? () #11 0x00000000009e7e7c in ?? () #12 0x00000000009e856c in ?? () #13 0x0000000000a1d57f in ?? () #14 0x0000000805a8647e in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.0 #15 0x0000000805a86843 in g_main_context_pending () from /usr/local/lib/libglib-2.0.so.0 #16 0x0000000805a868d4 in g_main_context_iteration () from /usr/local/lib/libglib-2.0.so.0 #17 0x0000000000a1d3a2 in ?? () #18 0x00000000009f6f66 in ?? () #19 0x00000000006c27a0 in ?? () #20 0x00000000022a08d9 in ?? () #21 0x00000000022a2df2 in ?? () #22 0x000000000229cd9f in ?? () #23 0x00000000009bbf91 in ?? () #24 0x00000000009bb656 in ?? () #25 0x000000000043cb59 in ?? () #26 0x000000000043ca2f in ?? () #27 0x00000008051d9000 in ?? () #28 0x0000000000000000 in ?? () -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 01:41:45 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B196F33 for ; Mon, 1 Sep 2014 01:41:45 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 325311516 for ; Mon, 1 Sep 2014 01:41:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s811fjqi009748 for ; Mon, 1 Sep 2014 01:41:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Mon, 01 Sep 2014 01:41:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bkarp@cs.ucl.ac.uk X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 01:41:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 --- Comment #31 from bkarp@cs.ucl.ac.uk --- Problem with missing type names in the v8 namespace solved. To the maintainers: The chromium port incorrectly picks up the include files in /usr/local/include from any v8 package installation present on the system during build. At the moment, the version of v8 installed by the FreeBSD port/package is different than (older than, one presumes?) the version of v8 included in the chromium 37 sources. After removing my v8 package, I was able to do a "stock" build of the current chromium 37 port on my 10.0-RELEASE p7 box. The fix would seem to be to tweak the -I arguments to the chromium port build to prefer the v8 include files within the chromium build tree to those installed in /usr/local (and analogous changes for libraries?). FWIW, I'd imagine this build breakage may affect others who have v8 installed. So a fix might save others from needing to build chromium in poudriere... -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 15:20:12 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16E3FFC9 for ; Mon, 1 Sep 2014 15:20:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1A4F19A5 for ; Mon, 1 Sep 2014 15:20:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81FKBf3049007 for ; Mon, 1 Sep 2014 15:20:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 15:20:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 15:20:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 --- Comment #1 from Jan Beich --- Created attachment 146631 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146631&action=edit |poudriere testport -P| log (10.0R amd64) Builds fine with the following Makefile.local: # try to break build BUILD_DEPENDS+= ffmpeg>0:${PORTSDIR}/multimedia/ffmpeg \ googletest>0:${PORTSDIR}/devel/googletest \ v8>0:${PORTSDIR}/lang/v8 \ webkit-gtk2>0:${PORTSDIR}/www/webkit-gtk2 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 15:29:27 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5005125B for ; Mon, 1 Sep 2014 15:29:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 372B91A09 for ; Mon, 1 Sep 2014 15:29:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81FTRi1059677 for ; Mon, 1 Sep 2014 15:29:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Mon, 01 Sep 2014 15:29:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 15:29:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbeich@vfemail.net --- Comment #32 from Jan Beich --- Could you perhaps try with the patch from bug 193187? It was based on a similar issue I had with gecko: www/firefox vs. old version of standalone JS engine in lang/spidermonkey*. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 15:46:37 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A088A48 for ; Mon, 1 Sep 2014 15:46:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 469291C1E for ; Mon, 1 Sep 2014 15:46:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81FkbD9004988 for ; Mon, 1 Sep 2014 15:46:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 15:46:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 15:46:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 --- Comment #2 from Jan Beich --- 9.3R i386 fails with an error likely due to files/patch-manual-build In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/context_state.cc:5: ../../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: conflicting declaration 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/context_state.cc:5: ../../third_party/mesa/src/include/GL/glext.h:6156:32: error: 'GLintptr' has a previous declaration as 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/context_state.cc:5: ../../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: conflicting declaration 'typedef ptrdiff_t GLsizeiptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/context_state.cc:5: ../../third_party/mesa/src/include/GL/glext.h:6157:32: error: 'GLsizeiptr' has a previous declaration as 'typedef long int GLsizeiptr' -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 15:54:52 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B7BEE22 for ; Mon, 1 Sep 2014 15:54:52 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 226451CFF for ; Mon, 1 Sep 2014 15:54:52 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81FspO1038052 for ; Mon, 1 Sep 2014 15:54:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 15:54:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rene@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 15:54:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 Rene Ladan changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rene@FreeBSD.org --- Comment #3 from Rene Ladan --- The official package builders for i386 noticed this too, so I made files/patch-manual-build to only apply to amd64. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 19:40:48 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 340148F2 for ; Mon, 1 Sep 2014 19:40:48 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19F1818D4 for ; Mon, 1 Sep 2014 19:40:48 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81Jelvr049387 for ; Mon, 1 Sep 2014 19:40:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 19:40:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 19:40:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #146582|0 |1 is obsolete| | --- Comment #4 from Jan Beich --- Created attachment 146637 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146637&action=edit mark default ports include path as -isystem, v2 I'd argue the patch is not needed with the approach here. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 19:43:21 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AF71A00 for ; Mon, 1 Sep 2014 19:43:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40F9B1975 for ; Mon, 1 Sep 2014 19:43:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81JhL4Z052651 for ; Mon, 1 Sep 2014 19:43:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 19:43:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@vfemail.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 19:43:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #146631|0 |1 is obsolete| | --- Comment #5 from Jan Beich --- Created attachment 146638 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146638&action=edit |poudriere testport -P| log (10.0R amd64) Added WITH_NEW_XORG and libEGL dep to try break build but still fine. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 21:59:09 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A0E92B2 for ; Mon, 1 Sep 2014 21:59:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E58011862 for ; Mon, 1 Sep 2014 21:59:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81Lx86h035039 for ; Mon, 1 Sep 2014 21:59:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 21:59:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rene@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 21:59:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 Rene Ladan changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 21:59:30 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 731792C5 for ; Mon, 1 Sep 2014 21:59:30 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A6341865 for ; Mon, 1 Sep 2014 21:59:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81LxUeC035132 for ; Mon, 1 Sep 2014 21:59:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 193187] www/chromium: fails to build when ffmpeg-2.3.3 installed or -I/usr/local/include poisoning Date: Mon, 01 Sep 2014 21:59:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 21:59:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193187 --- Comment #6 from commit-hook@freebsd.org --- A commit references this bug: Author: rene Date: Mon Sep 1 21:58:53 UTC 2014 New revision: 366965 URL: http://svnweb.freebsd.org/changeset/ports/366965 Log: Fix build on local systems when ffmpeg-2.3.3 is installed. This removes the need for files/extra-patch-manual-amd64 PR: 193187 Submitted by: Jan Beich Changes: head/www/chromium/Makefile head/www/chromium/files/extra-patch-manual-amd64 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 23:05:55 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FAFCFD1 for ; Mon, 1 Sep 2014 23:05:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 076231E36 for ; Mon, 1 Sep 2014 23:05:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s81N5sGC042447 for ; Mon, 1 Sep 2014 23:05:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Mon, 01 Sep 2014 23:05:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bkarp@cs.ucl.ac.uk X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 23:05:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 --- Comment #33 from bkarp@cs.ucl.ac.uk --- I can confirm that modifying the Makefile for www/chromium to add -isystem to CFLAGS with: CFLAGS+= -fno-stack-protector -isystem${LOCALBASE}/include allows my build of www/chromium to complete successfully on 10.0-RELEASE-p7, despite the prior installation of v8 in /usr/local. This change (also mentioned in bug 193187) would appear to fix the poisoning of the www/chromium build by include files from an installed v8 port in /usr/local/include . Thanks, Jan! (In reply to Jan Beich from comment #32) > Could you perhaps try with the patch from bug 193187? It was based on a > similar issue I had with gecko: www/firefox vs. old version of standalone JS > engine in lang/spidermonkey*. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Mon Sep 1 23:16:34 2014 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CE3D207 for ; Mon, 1 Sep 2014 23:16:34 +0000 (UTC) Received: from bgweb19.linkingwd.com (193.207-157-192.rdns.scalabledns.com [192.157.207.193]) by mx1.freebsd.org (Postfix) with ESMTP id 37B1D1F37 for ; Mon, 1 Sep 2014 23:16:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=bgweb19.linkingwd.com; s=dkimgc; t=1409613170; x=1410217970; q=dns/txt; h=DomainKey-Signature:Received:Reply-To:Message-ID: From:To:Subject:Date:MIME-Version:Content-Type; bh=GU4jivC05dAem mlPGqedcAwTWjskhmv0LAbQ9vukWss=; b=sHPCqvXuoQIA/wXIor0vyQjvA5aY9 JxAJC32ECizvWWsxbabrHJDmCFttQgV1O3nStsHcRK3CGaWoo92qWFmJfjKMYBNs /R6D1URjQMMk0EjCnimIlK91f0H0bVk7fYj7s/gKeo9YeGnSN6O8UixmEemOm7rP Xy6kTVIMyv3YNU= DomainKey-Signature: a=rsa-sha1; s=dkimgc; d=bgweb19.linkingwd.com; c=simple; q=dns; h=message-id:from; b=dI+T80tVqs4vuWIf0lFk/ZTYJrFXfdujMBJASiJ84SaKRBPjNuf3ALcqQ7ff Uz69wz1AD2a+XSoxizRI1PpvCvFGR9mRChSrOcK5eZ/6pqGbJF7W0bnzM YXnmhaTRi5MyeXw2C7ml2WA9cBvbWQZ6Lnm0rzusGLqGBg1LzSil8s=; Received: from cnuninet.com by 127.0.0.1 with ESMTP id md50000807467.msg for ; Tue, 02 Sep 2014 07:12:50 +0800 X-Spam-Processed: 127.0.0.1, Tue, 02 Sep 2014 07:12:50 +0800 (not processed: spam filter heuristic analysis disabled) X-Authenticated-Sender: service@bgweb20.linkingwd.com X-RemoteIP: 123.125.1.36 X-Return-Path: service@bgweb19.linkingwd.com X-Envelope-From: service@bgweb19.linkingwd.com X-Deliver-To: freebsd-chromium@freebsd.org Reply-To: Message-ID: <9BED4807E5D2997FB53923734BD075E3@cnuninet.com> From: "Eric VKG" To: Subject: Reminder: things about cylinder liner Date: Tue, 2 Sep 2014 07:17:02 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5512 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5512 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Sep 2014 23:16:34 -0000 DQolJXdlYnZlcnNpb24lJSAgICAgICAgICAgICAgICAgICAgICAgICAgIFdpc2ggWW91IGEgSGFw cHkgRGF5IFRvZGF5ISAyMDE0LTktMiA3OjE3OjA4DQoNCkRlYXIgZnJlZWJzZC1jaHJvbWl1bUBm cmVlYnNkLm9yZyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQpEZWFyDQoNCldlIHBy b3ZpZGUgb3VyIHZhbHVlZCBjdXN0b21lcnMgd2l0aCBhIHdpZGUgcmFuZ2Ugb2YgQ2hpbmEgbWFk ZSANCkRpZXNlbCBFbmdpbmUgU3BhcmUgUGFydHMNClRyYWN0b3IgU3BhcmUgUGFydHMsDQpXaWRl IFJhbmdlIG9mIEJlYXJpbmcsDQoNCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLURp ZXNlbCBFbmdpbmUgU3BhcmUgUGFydHMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0NCg0KICAgICAgICAgICAgICAgICAgIA0KDQpNYWluIGRpZXNlbCBlbmdpbmUg bW9kZWxzDQogIA0KICBTaW5nbGUgQ3lsaW5kZXINCg0KMTY1RiBaMTcwRiBSMTcwQSBaMTc1RiBS MTc1QSBSMTgwQSBSMTgwIFIxODUgUzE5NSBSMTk1IFMxMTAwIFMxMTEwIFMxMTE1IFpIMTEwMCBa SDExMDUgWkgxMTEwIFpIMTExNSBaSDExMjUgWkgxMTMwIFpTMTEwMCBaUzExMTAgWlMxMTE1IFpT MTEyNSBTRDExMDAgU0QxMTI1IEwxMi1MMzIgRU0xNzAgRU0xNzUgRU0xODAgRU0xODUgYW5kIGV0 Yy4gDQoNCiAgTXVsdGkgQ3lsaW5kZXINCg0KICA0ODUsNDk1LDI5NSwyMTAwLDIxMDUsNDEwMCw0 MTA1LDQxMDgsNjEwMCw2MTA1IGFuZCBldGMuICANCg0KTWFpbiBkaWVzZWwgZW5naW5lIGJyYW5k cyANCg0KQ2hhbmdjaGFpLCBZdW5uZWksIFlhbmdjaGFpLCBTaGFuZ2NoYWksIEppYW5nZG9uZywg Q2hhb2NoYWksIExhaWRvbmcsIFdlaWNoYWksIFl1Y2hhaSwgVGFpY2hhaSwgWGljaGFpLCBDaGFv Y2hhaSwgQ2hhbmdmYSwgWGluY2hhaSBhbmQgZXRjLiANCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KDQoNCi0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tVHJhY3RvciBTcGFyZSBQYXJ0cy0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICAgICAgICAgICAgICAgICAgDQoN Ck1haW4gdHJhY3RvciBicmFuZHMgIA0KDQpZVE8sIEZPVE9OIExPVk9MLCBKSU5NQSwgRG9uZ2Zl bmcsIEJlbnllLCBUYWlzaGFuLCBTaGlmZW5nLCBTaWZhbmcsIEpvaG4gRGVlcmUsIFNOSCAoU2hh bmdoYWkgTmV3IEhvbGxhbmQpLCBNVFogYW5kIGV0Yy4gDQoNCk1haW4gdHJhY3RvciBtb2RlbHMg DQoNCkdOLTEyMSwgR04tMTUxLCBERi0xMjEsIERGLTE1MSwgRG9uZ2ZlbmcgREYgc2VyaWVzLCBT aGFuZ2hhaSBOZXcgSG9sbGFuZCBTTkggc2VyaWVzLCBKb2huIERlZXJlIEpEIHNlcmllcywgTVRa LTgwLCA4MiwgRk9UT04gRlQgc2VyaWVzLCBZVE8gc2VyaWVzIDI1NCwgMzU0LCA1NTAsIDUwNCwg NzA0LCA5MDQsIDk1NCwgMTIwNCBhbmQgZXRjLiANCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCg0KDQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLVdpZGUgUmFuZ2Ugb2YgQmVhcmluZy0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0NCiAgICAgICAgICAgICAgICAgDQpNYWluIEJlYXJpbmcgVmFyaWV0 aWVzDQoNCkRlZXAgZ3Jvb3ZlIGJhbGwgYmVhcmluZ3MsIFRhcGVyZWQgcm9sbGVyIGJlYXJpbmdz LCBTZWxmLWFsaWduaW5nIGJhbGwgYmVhcmluZ3MsIFNwaGVyaWNhbCByb2xsZXIgYmVhcmluZ3Ms IE5lZWRsZSByb2xsZXIgYmVhcmluZ3MsIE5vbi1zdGFuZGFyZCBiZWFyaW5ncywgZXRjLiANCg0K TWFpbiBCZWFyaW5nIEJyYW5kcyANCkhSQiwgWldaLCBDJlUsIFNLRiwgTlNLLCBOVE4sIFRJTUtF TiwgRiBBIEcsIEtPWU8sIEtHIGFuZCBldGMuDQotLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KDQoNCkluIGNhc2UgeW91IGhhdmUgYW55IGlucXVpcnks IHBsZWFzZSBsZXQgdXMga25vdyB3aXRob3V0IGhlc2l0YXRlLg0K5rGf5rWmDQpMb29raW5nIGZv cndhcmQgdG8gc3RhcnQgY29vcGVyYXRpb24gd2l0aCB5b3UuDQpLaW5kIHJlZ2FyZHMsDQogDQoN Cg0KRXJpYyBXdQ0KTWFya2V0aW5nIERpcmVjdG9yDQpNb2JpbGU6ICs4Ni0xODkgMTAzOCA2OTg5 ICAgICAgIFNreXBlOmNhcHRlcmljOTkNCkVtYWlsOiBlcmljQHZpZXdrZXlncm91cC5jb20gIA0K DQoNClZLRy13aXRoIG1vcmUgdGhhbiAyMCB5ZWFycyBvZiBleGNlbGxlbmNlICANCg0KDQoxMiMs IEJ1aWxkaW5nIDMsIE5vcnRoIERpc3RyaWN0LCAgDQpQYW5na291IE1hcmtldCwgIEJhb2Rpbmcg Q2l0eSwgDQowNzE1MDQsIEhlYmVpIHByb3ZpbmNlLCBQLiBSLiBDaGluYSANClRlbDogKzg2LTMx Mi04NjI4MTk5IA0KRmF4OiArODYtMzEyLTg2MjgxOTkgDQpXZWJzaXRlOiB3d3cudmlld2tleWdy b3VwLmNvbQ0KIA0KDQoNClVuc3Vic2NyaWJlIG1lIGZyb20gdGhpcyBsaXN0ICAgICAgICAgICAg ICAgICUlY29uZmlybWxpbmslJQ0KDQpQbGVhc2UgcmVwbHkgVU4gZm9yIFVuc3Vic2NyaWJlDQpB RDogdGhpbmdzIGFib3V0IGRpZXNlbCBlbmdpbmUgc3BhcmUgcGFydHMNCiZuYnNwJm5ic3AmbmJz cCZuYnNwDQombmJzcCZuYnNwJm5ic3AmbmJzcCZuYnNwJm5ic3AmbmJzcA0KJm5ic3AmbmJzcCZu YnNwJm5ic3AmbmJzcCZuYnNwJm5ic3AmbmJzcCZuYnNwDQpDaGFuZ2NoYWkgZnVlbCBwdW1wDQoN Cg0KDQoNCg0KLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NClVuc3Vic2NyaWJlIHRoaXMgZW1haWwgLiBQbGVh c2UgZ28gaW50byA6IGh0dHBzOi8vamluc2h1anUubmV0L2YvQ2hUS01tDQotLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLQ0KDQo= From owner-freebsd-chromium@FreeBSD.ORG Tue Sep 2 06:18:54 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76CC17B1; Tue, 2 Sep 2014 06:18:54 +0000 (UTC) Received: from beefy4.isc.freebsd.org (beefy4.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:4072:0:16:3b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 262C91C4D; Tue, 2 Sep 2014 06:18:54 +0000 (UTC) Received: from beefy4.isc.freebsd.org (localhost [127.0.0.1]) by beefy4.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id s826Ir5l050808; Tue, 2 Sep 2014 06:18:53 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy4.isc.freebsd.org (8.14.9/8.14.9/Submit) id s826Ir5e050704; Tue, 2 Sep 2014 06:18:53 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Tue, 2 Sep 2014 06:18:53 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201409020618.s826Ir5e050704@beefy4.isc.freebsd.org> To: chromium@FreeBSD.org Subject: [package - 91i386-default-ssp][www/chromium] Failed for chromium-37.0.2062.94 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2014 06:18:54 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: chromium@FreeBSD.org Last committer: rene@FreeBSD.org Ident: $FreeBSD: head/www/chromium/Makefile 366226 2014-08-26 17:09:02Z rene $ Log URL: http://beefy4.isc.freebsd.org/data/91i386-default-ssp/2014-09-02_00h36m56s/logs/chromium-37.0.2062.94.log Build URL: http://beefy4.isc.freebsd.org/build.html?mastername=91i386-default-ssp&build=2014-09-02_00h36m56s Log: ====>> Building www/chromium build started at Tue Sep 2 06:05:56 UTC 2014 port directory: /usr/ports/www/chromium building for: FreeBSD pkg.FreeBSD.org 9.1-RELEASE-p13 FreeBSD 9.1-RELEASE-p13 i386 maintained by: chromium@FreeBSD.org Makefile ident: $FreeBSD: head/www/chromium/Makefile 366226 2014-08-26 17:09:02Z rene $ Poudriere version: 3.1-pre Host OSVERSION: 1100027 Jail OSVERSION: 901000 ---Begin Environment--- UNAME_m=i386 UNAME_p=i386 OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE-p13 UNAME_r=9.1-RELEASE-p13 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM=screen MASTERMNT=/usr/local/poudriere/data/.m/91i386-default-ssp/ref PKG_EXT=txz FORCE_PACKAGE=yes PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNG=1 PKGNAME=chromium-37.0.2062.94 PKG_DELETE=/usr/local/sbin/pkg-static delete -y -f PKG_ADD=/usr/local/sbin/pkg-static add OLDPWD=/root PWD=/usr/local/poudriere/data/.m/91i386-default-ssp/ref/.p/pool MASTERNAME=91i386-default-ssp USER=root HOME=/root POUDRIERE_VERSION=3.1-pre LOCALBASE=/usr/local PACKAGE_BUILDING=yes PKG_VERSION=/.p/pkg-static version PKG_BIN=/usr/local/sbin/pkg-static ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for chromium-37.0.2062.94: CODECS=on: Compile and enable patented codecs like H.264 DEBUG=off: Build with debugging support GCONF=on: GConf configuration backend support PULSEAUDIO=off: PulseAudio sound server support TEST=off: Build and/or run tests ===> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" CC="gcc47" CXX="g++47" GYP_GENERATORS=ninja GYP_DEFINES="clang_use_chrome_plugins=0 linux_breakpad=0 linux_use_heapchecker=0 linux_strip_binary=1 test_isolation_mode=noop disable_nacl=1 enable_one_click_signin=1 enable_openmax=1 enable_webrtc=1 werror= no_gc_sections=1 os_ver=901000 prefix_dir=/usr/local python_ver=2.7 use_allocator=none use_cups=1 linux_link_gsettings=1 linux_link_libpci=1 linux_link_libspeechd=1 libspeechd_h_prefix=speech-dispatcher/ usb_ids_path=/usr/local/share/usbids/usb.ids want_separate_host_toolset=0 use_system_bzip2=1 use_system_flac=1 use_system_harfbuzz=1 use_system_icu=1 use_system_jsoncpp=1 use_system_libevent=1 use_system_libexif=1 use_system_libjpeg=1 use_system_libpng=1 use_system_libusb=1 use_system_libwebp=1 use_system_libxml=1 use_system_libxslt=1 use_ system_minizip=1 use_system_nspr=1 use_system_openssl=1 use_system_protobuf=1 use_system_re2=1 use_system_snappy=1 use_system_speex=1 use_system_xdg_utils=1 use_system_yasm=1 use_system_zlib=1 flapper_version_h_file='/wrkdirs/usr/ports/www/chromium/work/chromium-37.0.2062.94/flapper_version.h' google_api_key=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 google_default_client_id=996322985003.apps.googleusercontent.com google_default_client_secret=IR1za9-1VK0zZ0f_O8MVFicn ffmpeg_branding=Chrome proprietary_codecs=1 use_gconf=1 use_pulseaudio=0 disable_sse2=1 gcc_version=47" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" PKG_CONFIG=pkgconf ac_cv_path_PERL=/usr/local/bin/perl ac_cv_path_PERL_PATH=/usr/local/bin/perl PYTHON="/usr/local/bin/python2.7" CFLAGS="-O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing" CPPFLAGS="" CXXFLAGS="-O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/l! ocal/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47" LDFLAGS=" -Wl,-rpath,/usr/lib:/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc47 -L/usr/local/lib/gcc47" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh PATH=/usr/local/libexec/ccache:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin CCACHE_DIR="/root/.ccache" --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" BUILDTYPE=Release GPERF="/usr/local/bin/gperf" XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" OPENSSLLIB=/usr/lib OPENSSLINC=/usr/include OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl XDG_DATA_HOME=/wrkdirs/usr/ports/www/chromium/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/chromium/work HOME=/wrkdirs/usr/ports/www/chromium/work TMPDIR="/tmp" NO_PIE=yes SHELL=/bin/sh NO_LINT=YES ADDR2LINE="/usr/local/bin/addr2line" AR="/usr/local/bin/ar" AS="/usr/local/bin/as" CPPFILT="/usr/local/bin/c++filt" GPROF="/usr/local/bin/gprof" LD="/usr/local/bin/ld" NM="/usr/local/bin/nm" OBJCOPY="/usr/local/bin/objcopy" OBJDUMP="/usr/local/bin/objdump" RANLIB="/usr/local/bin/ranlib" READELF="/usr/local/bin/readelf" SIZE="/usr/local/bin/siz e" STRINGS="/usr/local/bin/strings" DESTDIR=/wrkdirs/usr/ports/www/chromium/work/stage PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="gcc47" CFLAGS="-O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing" CPP="cpp47" CPPFLAGS="" LDFLAGS=" -Wl,-rpath,/usr/lib:/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc47 -L/usr/local/lib/gcc47" LIBS="" CXX="g++47" CXXFLAGS="-O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47" MANPREFIX="/usr/local" PATH=/usr/local/libexec/ccache:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin CCACHE_DIR="/root/.ccache" BSD_INSTALL_PROGRAM="install -s -o root -g wheel -m 555" BSD_INSTALL_LIB="install -s -o root -g wheel -m 444" BSD_INSTALL_SCRIPT="install -o root -g wheel -m 555" BSD_INSTALL_DATA="install -o root -g wheel -m 444" BSD_INSTALL_MAN="install -o root -g wheel -m 444" --End MAKE_ENV-- --PLIST_SUB-- PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd9 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_VERSION=python2.7 OSREL=9.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PERL_VERSION=5.16.3 PERL_VER=5.16 PERL_ARCH=mach PERL5_MAN3=lib/perl5/5.16/man/man3 SITE_PERL=lib/perl5/site_perl/5.16 DOCSDIR="share/doc/chromium" EXAMPLESDIR="share/examples/chromium" DATADIR="share/chromium" WWWDIR="www/chromium" ETCDIR="etc/chromium" --End PLIST_SUB-- --SUB_LIST-- COMMENT="Mostly BSD-licensed web browser based on WebKit and Gtk+" PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/chromium DOCSDIR=/usr/local/share/doc/chromium EXAMPLESDIR=/usr/local/share/examples/chromium WWWDIR=/usr/local/www/chromium ETCDIR=/usr/local/etc/chromium --End SUB_LIST-- ---Begin make.conf--- ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs ARCH=i386 MACHINE=i386 MACHINE_ARCH=i386 WITH_CCACHE_BUILD=yes CCACHE_DIR=/root/.ccache USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles #### /usr/local/etc/poudriere.d/make.conf #### WITH_PKGNG=yes #WITH_PKGNG=devel #### /usr/local/etc/poudriere.d/ssp-make.conf #### WITH_SSP_PORTS=yes DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user =========================================================================== =================================================== ===> chromium-37.0.2062.94 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /packages/All/pkg-1.3.7.txz [pkg.FreeBSD.org] Installing pkg-1.3.7... done Message for pkg-1.3.7: If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of chromium-37.0.2062.94 =========================================================================== =================================================== =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building => SHA256 Checksum OK for chromium-37.0.2062.94.tar.xz. =========================================================================== =================================================== =========================================================================== =================================================== To build Chromium, you should have around 1 GB of memory and a fair amount of free diskspace (~ 3.7GB). Make sure you have Python build with the SEM option ON (default in python27-2.7.8 since r361735) ===> License BSD3CLAUSE LGPL21 MPL accepted by the user ===> Fetching all distfiles required by chromium-37.0.2062.94 for building ===> Extracting for chromium-37.0.2062.94 => SHA256 Checksum OK for chromium-37.0.2062.94.tar.xz. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for chromium-37.0.2062.94 ===> Applying extra patch /usr/ports/www/chromium/files/extra-patch-libusb-pc ===> Applying extra patch /usr/ports/www/chromium/files/extra-patch-gcc ===> Applying FreeBSD patches for chromium-37.0.2062.94 =========================================================================== [6482/14916] CXX obj/cc/trees/cc.thread_proxy.o [6483/14916] CXX obj/cc/trees/cc.tree_synchronizer.o [6484/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.async_pixel_transfer_manager_share_group.o [6485/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.async_pixel_transfer_manager_stub.o [6486/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.async_pixel_transfer_manager_sync.o [6487/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.async_pixel_transfer_manager.o [6488/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.buffer_manager.o [6489/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.cmd_parser.o [6490/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.command_buffer_service.o [6491/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.common_decoder.o [6492/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.context_group.o [6493/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.context_state.o [6494/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.error_state.o [6495/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.feature_info.o [6496/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.framebuffer_manager.o [6497/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_copy_texture_chromium.o [6498/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_decoder.o [6499/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_validation.o [6500/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gl_context_virtual.o [6501/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gl_state_restorer_impl.o [6502/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gpu_control_service.o [6503/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gpu_scheduler.o [6504/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gpu_state_tracer.o [6505/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gpu_switches.o [6506/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.gpu_tracer.o [6507/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.id_manager.o [6508/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.image_manager.o [6509/14916] CXX obj/gpu/command_buffer/service/command_buffer_service.in_process_command_buffer.o FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.buffer_manager.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net:80 /"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__ STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDY! NAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno- missing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/buffer_manager.cc -o obj/gpu/command_buffer/service/command_buffer_service.buffer_manager.o In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/buffer_manager.cc:10: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: conflicting declaration 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/buffer_manager.h:14, from ../../gpu/command_buffer/service/buffer_manager.cc:5: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: 'GLintptr' has a previous declaration as 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/buffer_manager.cc:10: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: conflicting declaration 'typedef ptrdiff_t GLsizeiptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/buffer_manager.h:14, from ../../gpu/command_buffer/service/buffer_manager.cc:5: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: 'GLsizeiptr' has a previous declaration as 'typedef long int GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.feature_info.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net:80/" ' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__ST DC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDYNA! MIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-mi ssing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/feature_info.cc -o obj/gpu/command_buffer/service/command_buffer_service.feature_info.o In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/feature_info.cc:15: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: conflicting declaration 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/feature_info.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: 'GLintptr' has a previous declaration as 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/feature_info.cc:15: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: conflicting declaration 'typedef long int GLsizeiptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/feature_info.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: 'GLsizeiptr' has a previous declaration as 'typedef ptrdiff_t GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.context_group.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net:80/ "' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__S TDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDYN! AMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-m issing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/context_group.cc -o obj/gpu/command_buffer/service/command_buffer_service.context_group.o In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/buffer_manager.h:14, from ../../gpu/command_buffer/service/context_group.cc:14: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: conflicting declaration 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/context_group.h:16:0, from ../../gpu/command_buffer/service/context_group.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: 'GLintptr' has a previous declaration as 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/buffer_manager.h:14, from ../../gpu/command_buffer/service/context_group.cc:14: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: conflicting declaration 'typedef long int GLsizeiptr' In file included from ../../gpu/command_buffer/service/context_group.h:16:0, from ../../gpu/command_buffer/service/context_group.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: 'GLsizeiptr' has a previous declaration as 'typedef ptrdiff_t GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.context_state.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net:80/ "' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__S TDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDYN! AMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-m issing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/context_state.cc -o obj/gpu/command_buffer/service/command_buffer_service.context_state.o In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/context_state.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: conflicting declaration 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/context_state.cc:5: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: 'GLintptr' has a previous declaration as 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/context_state.cc:5: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: conflicting declaration 'typedef ptrdiff_t GLsizeiptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/context_state.cc:5: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: 'GLsizeiptr' has a previous declaration as 'typedef long int GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_validation.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip. net:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACRO S -D__STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIN! D -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/gles2_cmd_validation.cc -o obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_validation.o In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:10: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: conflicting declaration 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:9: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: 'GLintptr' has a previous declaration as 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:10: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: conflicting declaration 'typedef long int GLsizeiptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/gles2_cmd_validation.cc:9: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: 'GLsizeiptr' has a previous declaration as 'typedef ptrdiff_t GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gpu_control_service.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.n et:80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND! -DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/gpu_control_service.cc -o obj/gpu/command_buffer/service/command_buffer_service.gpu_control_service.o In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/query_manager.h:17, from ../../gpu/command_buffer/service/gpu_control_service.cc:8: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: conflicting declaration 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/gpu_control_service.cc:8: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: 'GLintptr' has a previous declaration as 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/query_manager.h:17, from ../../gpu/command_buffer/service/gpu_control_service.cc:8: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: conflicting declaration 'typedef long int GLsizeiptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/gpu_control_service.cc:8: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: 'GLsizeiptr' has a previous declaration as 'typedef ptrdiff_t GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_decoder.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net :80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS - D__STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -! DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -W no-missing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/gles2_cmd_decoder.cc -o obj/gpu/command_buffer/service/command_buffer_service.gles2_cmd_decoder.o In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/async_pixel_transfer_delegate.h:16, from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:33: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: conflicting declaration 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:29:0: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: 'GLintptr' has a previous declaration as 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/async_pixel_transfer_delegate.h:16, from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:33: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: conflicting declaration 'typedef long int GLsizeiptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_decoder.cc:29:0: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: 'GLsizeiptr' has a previous declaration as 'typedef ptrdiff_t GLsizeiptr' FAILED: g++47 -MMD -MF obj/gpu/command_buffer/service/command_buffer_service.gpu_state_tracer.o.d -DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME -D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_ASH=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1 -DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2 -DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS -DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1 -DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2 -DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_MANAGED_USERS=1 '-DDATA_REDUCTION_FALLBACK_HOST="http://compress.googlezip.net: 80/"' '-DDATA_REDUCTION_DEV_HOST="http://proxy-dev.googlezip.net:80/"' '-DSPDY_PROXY_AUTH_ORIGIN="https://proxy.googlezip.net:443/"' '-DDATA_REDUCTION_PROXY_PROBE_URL="http://check.googlezip.net/connect"' '-DDATA_REDUCTION_PROXY_WARMUP_URL="http://www.gstatic.com/generate_204"' -DGL_GLEXT_PROTOTYPES -DUSE_SYSTEM_PROTOBUF -DGOOGLE_PROTOBUF_NO_RTTI -DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1 '-DGR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"' -DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1 -DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT -DSK_SUPPORT_LEGACY_GETTOPDEVICE -DSK_SUPPORT_LEGACY_BITMAP_CONFIG -DSK_SUPPORT_LEGACY_DEVICE_VIRTUAL_ISOPAQUE -DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_SETCONFIG -DSK_IGNORE_ETC1_SUPPORT -DSK_IGNORE_GPU_DITHER -DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS -DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -D! DYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2 -Igen/shim_headers/libpng/target -Igen/shim_headers/harfbuzz-ng/target -Igen/shim_headers/zlib/target -Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target -Igen/shim_headers/re2/target -Igen/shim_headers/libevent/target -Igen -I../.. -I../../third_party/khronos -I../../gpu -I/usr/local/include -I../../skia/config -Igen/protoc_out -I../../net/third_party/nss/ssl -I../../third_party/skia/src/core -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../skia/ext -Igen/ui/gl -I../../third_party/mesa/src/include -fstack-protector --param=ssp-buffer-size=4 -pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter -Wn o-missing-field-initializers -fvisibility=hidden -pipe -fPIC -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include/nspr -I/usr/local/include -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -msse2 -mfpmath=sse -mmmx -m32 -O2 -fno-ident -fdata-sections -ffunction-sections -funwind-tables -O2 -pipe -fno-stack-protector -Wl,-rpath=/usr/local/lib/gcc47 -fno-strict-aliasing -Wl,-rpath=/usr/local/lib/gcc47 -fno-rtti -fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -c ../../gpu/command_buffer/service/gpu_state_tracer.cc -o obj/gpu/command_buffer/service/command_buffer_service.gpu_state_tracer.o In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: ./../gpu/command_buffer/common/gles2_cmd_format.h:42:19: error: conflicting declaration 'typedef ptrdiff_t GLintptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: ./../third_party/mesa/src/include/GL/glext.h:6156:25: error: 'GLintptr' has a previous declaration as 'typedef long int GLintptr' In file included from ../../gpu/command_buffer/service/gles2_cmd_validation.h:13:0, from ../../gpu/command_buffer/service/feature_info.h:14, from ../../gpu/command_buffer/service/query_manager.h:16, from ../../gpu/command_buffer/service/context_state.h:14, from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: ./../gpu/command_buffer/common/gles2_cmd_format.h:43:19: error: conflicting declaration 'typedef ptrdiff_t GLsizeiptr' In file included from ../../third_party/mesa/src/include/GL/gl.h:2086:0, from ../../ui/gl/gl_bindings.h:13, from ../../gpu/command_buffer/service/gl_utils.h:12, from ../../gpu/command_buffer/service/context_state.h:13, from ../../gpu/command_buffer/service/gpu_state_tracer.cc:9: ./../third_party/mesa/src/include/GL/glext.h:6157:25: error: 'GLsizeiptr' has a previous declaration as 'typedef long int GLsizeiptr' ninja: build stopped: subcommand failed. *** [do-build] Error code 1 Stop in /usr/ports/www/chromium. From owner-freebsd-chromium@FreeBSD.ORG Tue Sep 2 06:19:33 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF498854 for ; Tue, 2 Sep 2014 06:19:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6D6B1C54 for ; Tue, 2 Sep 2014 06:19:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s826JXGh010514 for ; Tue, 2 Sep 2014 06:19:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable Date: Tue, 02 Sep 2014 06:19:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rene@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2014 06:19:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685 Rene Ladan changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |FIXED --- Comment #34 from Rene Ladan --- Fixed in r366965 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Thu Sep 4 16:30:07 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30F8ABF2 for ; Thu, 4 Sep 2014 16:30:07 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16B8F116B for ; Thu, 4 Sep 2014 16:30:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s84GU6VK008994 for ; Thu, 4 Sep 2014 16:30:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 183645] www/chromium: segfault in string operations Date: Thu, 04 Sep 2014 16:30:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: che@bein.link X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2014 16:30:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183645 Maxim Filimonov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |che@bein.link --- Comment #4 from Maxim Filimonov --- Reproduced on 10.0-p7 amd64. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Fri Sep 5 00:18:27 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AA50B3D for ; Fri, 5 Sep 2014 00:18:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 11ABC1A8F for ; Fri, 5 Sep 2014 00:18:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s850IQFq031072 for ; Fri, 5 Sep 2014 00:18:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 183645] www/chromium: segfault in string operations Date: Fri, 05 Sep 2014 00:18:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2014 00:18:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183645 Adrian Chadd changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Issue Resolved |Needs Triage Resolution|FIXED |--- --- Comment #5 from Adrian Chadd --- Reproduced even now? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Fri Sep 5 16:36:34 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EFC05F29 for ; Fri, 5 Sep 2014 16:36:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D71A51D9E for ; Fri, 5 Sep 2014 16:36:34 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s85GaYac043906 for ; Fri, 5 Sep 2014 16:36:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 183645] www/chromium: segfault in string operations Date: Fri, 05 Sep 2014 16:36:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: che@bein.link X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2014 16:36:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183645 --- Comment #6 from Maxim Filimonov --- Sorry, my bad: posted the comment before looking there: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192821 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sat Sep 6 02:03:42 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75F40918 for ; Sat, 6 Sep 2014 02:03:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D2E21F01 for ; Sat, 6 Sep 2014 02:03:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8623gbA038232 for ; Sat, 6 Sep 2014 02:03:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192784] failed to build www/chromium 36.0.1985.143 on FreeBSD 10 (amd64) Date: Sat, 06 Sep 2014 02:03:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Sep 2014 02:03:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192784 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|failed to build chromium |failed to build |36.0.1985.143 on FreeBSD 10 |www/chromium 36.0.1985.143 |(amd64) |on FreeBSD 10 (amd64) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sat Sep 6 02:04:59 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2145937 for ; Sat, 6 Sep 2014 02:04:59 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A94501F0B for ; Sat, 6 Sep 2014 02:04:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8624xWn040629 for ; Sat, 6 Sep 2014 02:04:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192749] www/chromium 36.0.1985.143 shows normally hidden window manager decorations Date: Sat, 06 Sep 2014 02:04:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Sep 2014 02:04:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192749 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|chromium 36.0.1985.143 |www/chromium 36.0.1985.143 |shows normally hidden |shows normally hidden |window manager decorations |window manager decorations -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-chromium@FreeBSD.ORG Sat Sep 6 02:05:28 2014 Return-Path: Delivered-To: chromium@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B87B951 for ; Sat, 6 Sep 2014 02:05:28 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12B7B1F14 for ; Sat, 6 Sep 2014 02:05:28 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8625R4H041498 for ; Sat, 6 Sep 2014 02:05:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: chromium@FreeBSD.org Subject: [Bug 192748] www/chromium 36.0.1985.143 disallows some forms of cut/paste in URL bar Date: Sat, 06 Sep 2014 02:05:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: chromium@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Sep 2014 02:05:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192748 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|chromium 36.0.1985.143 |www/chromium 36.0.1985.143 |disallows some forms of |disallows some forms of |cut/paste in URL bar |cut/paste in URL bar -- You are receiving this mail because: You are the assignee for the bug.