Received: by mail.netbsd.org (Postfix, from userid 605) id 1647284D64; Mon, 20 Aug 2018 11:43:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 00F5E84CDA for ; Mon, 20 Aug 2018 11:43:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 5E-sDyLvaqhB for ; Mon, 20 Aug 2018 11:43:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 426A284C71 for ; Mon, 20 Aug 2018 11:43:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B1E0FBEC; Mon, 20 Aug 2018 11:43:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534765422115550" MIME-Version: 1.0 Date: Mon, 20 Aug 2018 11:43:42 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/finance/gnucash To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180820114342.3B1E0FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534765422115550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Aug 20 11:43:42 UTC 2018 Modified Files: pkgsrc/finance/gnucash: distinfo Added Files: pkgsrc/finance/gnucash/patches: patch-CMakeLists.txt Log Message: gnucash: disable -Werror to fix build with latest boost Idea from adam@, thanks! To generate a diff of this commit: cvs rdiff -u -r1.87 -r1.88 pkgsrc/finance/gnucash/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/finance/gnucash/patches/patch-CMakeLists.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534765422115550 Content-Disposition: inline Content-Length: 2452 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/gnucash/distinfo diff -u pkgsrc/finance/gnucash/distinfo:1.87 pkgsrc/finance/gnucash/distinfo:1.88 --- pkgsrc/finance/gnucash/distinfo:1.87 Mon Jun 25 08:02:36 2018 +++ pkgsrc/finance/gnucash/distinfo Mon Aug 20 11:43:41 2018 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.87 2018/06/25 08:02:36 wiz Exp $ +$NetBSD: distinfo,v 1.88 2018/08/20 11:43:41 wiz Exp $ SHA1 (gnucash-3.2.tar.bz2) = 91a2dbed3e08026e6d2765851361d698e377e4d3 RMD160 (gnucash-3.2.tar.bz2) = 9cd51ace65afb30a65aabd28ffd32b0703161a46 SHA512 (gnucash-3.2.tar.bz2) = 2283f7cc3426b012297f654376a369021cce0f2de2354350d05cbd6a8610f512d418e4fedab15c811e11841d01bd47c5a1458c05dd14eaad3bfc0bafd7ed7cb0 Size (gnucash-3.2.tar.bz2) = 13384008 bytes +SHA1 (patch-CMakeLists.txt) = 299b1daa2599a873385d2c8b1432e03c6fdba590 Added files: Index: pkgsrc/finance/gnucash/patches/patch-CMakeLists.txt diff -u /dev/null pkgsrc/finance/gnucash/patches/patch-CMakeLists.txt:1.1 --- /dev/null Mon Aug 20 11:43:42 2018 +++ pkgsrc/finance/gnucash/patches/patch-CMakeLists.txt Mon Aug 20 11:43:42 2018 @@ -0,0 +1,20 @@ +$NetBSD: patch-CMakeLists.txt,v 1.1 2018/08/20 11:43:42 wiz Exp $ + +Disable -Werror due to boost issues. + +--- CMakeLists.txt.orig 2018-06-24 21:43:51.000000000 +0000 ++++ CMakeLists.txt +@@ -560,10 +560,10 @@ set(CMAKE_CXX_FLAGS "-std=gnu++11 ${CMAK + + + if (UNIX) +- set( CMAKE_C_FLAGS "-Werror -Wdeclaration-after-statement -Wno-pointer-sign -Wall -Wmissing-prototypes -Wmissing-declarations -Wno-unused ${CMAKE_C_FLAGS}") +- set( CMAKE_CXX_FLAGS "-Werror -Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") ++ set( CMAKE_C_FLAGS "-Wdeclaration-after-statement -Wno-pointer-sign -Wall -Wmissing-prototypes -Wmissing-declarations -Wno-unused ${CMAKE_C_FLAGS}") ++ set( CMAKE_CXX_FLAGS "-Wall -Wmissing-declarations -Wno-unused -Wno-error=parentheses ${CMAKE_CXX_FLAGS}") + set( CMAKE_C_FLAGS "-Wno-deprecated-declarations -std=gnu11 -Wno-error=parentheses ${CMAKE_C_FLAGS}") +- set( CMAKE_C_FLAGS_RELEASE "-O3 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 ${CMAKE_C_FLAGS}") ++ set( CMAKE_C_FLAGS_RELEASE "-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 ${CMAKE_C_FLAGS}") + endif (UNIX) + if (MINGW) + set( CMAKE_C_FLAGS "-Werror -Wdeclaration-after-statement -Wno-pointer-sign -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wno-unused -Wno-error=deprecated-declarations -std=gnu11 ${CMAKE_C_FLAGS}") --_----------=_1534765422115550--