From owner-svn-ports-head@freebsd.org Tue Nov 27 11:27:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 872F91146DFE; Tue, 27 Nov 2018 11:27:39 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FD977292C; Tue, 27 Nov 2018 11:27:39 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 122A31A93A; Tue, 27 Nov 2018 11:27:39 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wARBRcxg070828; Tue, 27 Nov 2018 11:27:38 GMT (envelope-from philip@FreeBSD.org) Received: (from philip@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wARBRcQj070826; Tue, 27 Nov 2018 11:27:38 GMT (envelope-from philip@FreeBSD.org) Message-Id: <201811271127.wARBRcQj070826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: philip set sender to philip@FreeBSD.org using -f From: Philip Paeps Date: Tue, 27 Nov 2018 11:27:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485999 - in head/www/cliqz: . files X-SVN-Group: ports-head X-SVN-Commit-Author: philip X-SVN-Commit-Paths: in head/www/cliqz: . files X-SVN-Commit-Revision: 485999 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2FD977292C X-Spamd-Result: default: False [1.69 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.47)[0.465,0]; NEURAL_SPAM_MEDIUM(0.64)[0.643,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.58)[0.579,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2018 11:27:39 -0000 Author: philip Date: Tue Nov 27 11:27:38 2018 New Revision: 485999 URL: https://svnweb.freebsd.org/changeset/ports/485999 Log: www/cliqz: really fix the build on i386 (hopefully) Try harder to stop the linker from running out of memory on i386. Submitted by: Santhosh Raju (maintainer) Modified: head/www/cliqz/Makefile head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig Modified: head/www/cliqz/Makefile ============================================================================== --- head/www/cliqz/Makefile Tue Nov 27 09:36:59 2018 (r485998) +++ head/www/cliqz/Makefile Tue Nov 27 11:27:38 2018 (r485999) @@ -96,7 +96,7 @@ post-patch: ${CLIQZ_DESKTOP} .if ${ARCH} == "i386" # This prevents linker exhausting memory in i386 builds - @${ECHO_CMD} 'export LDFLAGS="-Wl,--no-keep-memory"' >> \ + @${ECHO_CMD} 'export LDFLAGS="-Wl,--no-keep-memory -Wl,--as-needed"' >> \ ${WRKSRC}/mozilla-release/browser/config/cliqz.mozconfig .endif Modified: head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig ============================================================================== --- head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig Tue Nov 27 09:36:59 2018 (r485998) +++ head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig Tue Nov 27 11:27:38 2018 (r485999) @@ -1,12 +1,14 @@ --- mozilla-release/browser/config/cliqz.mozconfig.orig 2018-11-16 08:40:07 UTC +++ mozilla-release/browser/config/cliqz.mozconfig -@@ -10,6 +10,9 @@ ac_add_options --enable-official-brandin +@@ -10,6 +10,11 @@ ac_add_options --enable-official-brandin ac_add_options --with-app-name=cliqz # name for binaries ac_add_options --enable-crashreporter ac_add_options --enable-js-shell +ac_add_options --disable-crashreporter +ac_add_options --disable-updater +ac_add_options --disable-tests - ++ac_add_options --disable-debug ++ac_add_options --disable-debug-symbols + export MOZ_APP_PROFILE=CLIQZ export MOZ_AUTOMATION_UPLOAD=1