From owner-svn-ports-all@FreeBSD.ORG Sat Nov 15 21:25:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D701E13; Sat, 15 Nov 2014 21:25:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 6FA8A9DC; Sat, 15 Nov 2014 21:25:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAFLP9Tc039928; Sat, 15 Nov 2014 21:25:09 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAFLP9PW039925; Sat, 15 Nov 2014 21:25:09 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201411152125.sAFLP9PW039925@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 15 Nov 2014 21:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r372615 - in branches/2014Q4/www/chromium: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Nov 2014 21:25:09 -0000 Author: rene Date: Sat Nov 15 21:25:08 2014 New Revision: 372615 URL: https://svnweb.freebsd.org/changeset/ports/372615 QAT: https://qat.redports.org/buildarchive/r372615/ Log: MFH: r372253 www/chromium: - fix crash on startup on systems which do not have libexecinfo in base (typically 8.X and 9.X) - conditionally bump PORTREVISION PR: ports/193610 Submitted by: Rob Belics Patch by: Tomek Approved by: ports-secteam (rea) Added: branches/2014Q4/www/chromium/files/extra-patch-fixup-ffmpeg - copied unchanged from r372253, head/www/chromium/files/extra-patch-fixup-ffmpeg Modified: branches/2014Q4/www/chromium/Makefile Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/www/chromium/Makefile ============================================================================== --- branches/2014Q4/www/chromium/Makefile Sat Nov 15 20:35:16 2014 (r372614) +++ branches/2014Q4/www/chromium/Makefile Sat Nov 15 21:25:08 2014 (r372615) @@ -165,6 +165,13 @@ GYP_DEFINES+= disable_sse2=1 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libusb-pc .endif +# pointed out by "Tomek" on freebsd-chromium@ +.if !exists(/usr/lib/libexecinfo.so) +CFLAGS+= -fno-omit-frame-pointer +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-fixup-ffmpeg +PORTREVISION= 1 +.endif + .if ${PORT_OPTIONS:MTEST} .include "Makefile.tests" ALL_TARGET+= ${TEST_TARGETS} Copied: branches/2014Q4/www/chromium/files/extra-patch-fixup-ffmpeg (from r372253, head/www/chromium/files/extra-patch-fixup-ffmpeg) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q4/www/chromium/files/extra-patch-fixup-ffmpeg Sat Nov 15 21:25:08 2014 (r372615, copy of r372253, head/www/chromium/files/extra-patch-fixup-ffmpeg) @@ -0,0 +1,18 @@ +--- third_party/ffmpeg/ffmpeg.gyp.orig 2014-10-27 20:27:40.000000000 +0100 ++++ third_party/ffmpeg/ffmpeg.gyp 2014-11-06 22:53:10.000000000 +0100 +@@ -213,6 +213,15 @@ + 'cflags!': [ + '-fno-omit-frame-pointer', + ], ++ # "Tomek" from freebsd-chromium@ figured this out, rene is ++ # puzzled why this is needed. Fixes runtime on FreeBSD < 10 ++ 'cflags_c': [ ++ '-fomit-frame-pointer', ++ ], ++ 'cflags_cc': [ ++ '-fomit-frame-pointer', ++ ], ++ # back to upstream code + 'debug_extra_cflags!': [ + '-fno-omit-frame-pointer', + ],