Received: by mail.netbsd.org (Postfix, from userid 605) id 908CF84D47; Fri, 22 Dec 2017 21:50:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 19ED484D26 for ; Fri, 22 Dec 2017 21:50:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id DrCYKMGZ8mvH for ; Fri, 22 Dec 2017 21:50:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 74FDC84D03 for ; Fri, 22 Dec 2017 21:50:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6AEBBFB40; Fri, 22 Dec 2017 21:50:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1513979402294290" MIME-Version: 1.0 Date: Fri, 22 Dec 2017 21:50:02 +0000 From: "Iain Hibbert" Subject: CVS commit: pkgsrc/cad/openscad To: pkgsrc-changes@NetBSD.org Reply-To: plunky@netbsd.org X-Mailer: log_accum Message-Id: <20171222215002.6AEBBFB40@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. --_----------=_1513979402294290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: plunky Date: Fri Dec 22 21:50:02 UTC 2017 Modified Files: pkgsrc/cad/openscad: Makefile Log Message: fix build on NetBSD-8; the qt4 qmake puts in =std=c++98 by default but this need c++0x at least (this fixes only with gcc; clang build claims that CGAL needs updating) To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/cad/openscad/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1513979402294290 Content-Disposition: inline Content-Length: 797 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cad/openscad/Makefile diff -u pkgsrc/cad/openscad/Makefile:1.45 pkgsrc/cad/openscad/Makefile:1.46 --- pkgsrc/cad/openscad/Makefile:1.45 Thu Aug 24 20:03:05 2017 +++ pkgsrc/cad/openscad/Makefile Fri Dec 22 21:50:02 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.45 2017/08/24 20:03:05 adam Exp $ +# $NetBSD: Makefile,v 1.46 2017/12/22 21:50:02 plunky Exp $ # DISTNAME= openscad-2015.03-3.src @@ -29,7 +29,8 @@ MAKE_ENV+= INSTALL_ROOT=${DESTDIR} do-configure: cd ${WRKSRC} && ${QTDIR}/bin/qmake \ - PREFIX=${PREFIX} -after QMAKE_YACC=bison QMAKE_LEX=flex + PREFIX=${PREFIX} -after QMAKE_YACC=bison QMAKE_LEX=flex \ + QMAKE_CXXFLAGS+=-std=c++0x .include "../../devel/boost-headers/buildlink3.mk" .include "../../devel/boost-libs/buildlink3.mk" --_----------=_1513979402294290--