From owner-svn-ports-all@freebsd.org Sat Sep 1 13:12:21 2018 Return-Path: Delivered-To: svn-ports-all@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 583DCFEF25C; Sat, 1 Sep 2018 13:12:21 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) (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 EFA2E8B231; Sat, 1 Sep 2018 13:12:20 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 45FE54A0; Sat, 1 Sep 2018 09:12:13 -0400 (EDT) Received: from web5 ([10.202.2.215]) by compute4.internal (MEProxy); Sat, 01 Sep 2018 09:12:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=9j5qAb CpmG2inUmWRjS2fILkFGXwUUnLxMc8Bftlvpc=; b=AlPqoRlw4Nvi9QHJsGhQad lXkxH7S3EbudDC61iXehvdxqqyhtXTKFwdabB76TqCUsqMvL39FAlhegt3FdnW8m txwa9pTt1aTP/f3qRqem6LXKPXysB3xbdOS3C+2ayrM6enaK3m0tJ2BvtEuvgrJL YqOi0Beut/BvGK7Bz6+NEhYkYKuHFjRJ+8Op+OUWXNJaj/ugxCHHXg4WGe3+fHkp XzZdEPdQavCnmI7550v2QjNwNT4eqcuyUfONZV91ZZH9t1PoTvyGgkIqV+DQYILv 8tefTA+bfX+yt8fGAGdVO0kxbHbSKphFlXSyREWBtWBDQNV5E+nJhcc0dz3li25w == X-ME-Proxy: X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 88F8E9E1B7; Sat, 1 Sep 2018 09:12:12 -0400 (EDT) Message-Id: <1535807532.607241.1493457672.6296710D@webmail.messagingengine.com> From: Tobias Kortkamp To: Jan Beich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-7b72137a References: <201809011239.w81CdN2E020942@repo.freebsd.org> Date: Sat, 01 Sep 2018 15:12:12 +0200 Subject: Re: svn commit: r478679 - head/devel/boost-python-libs In-Reply-To: <201809011239.w81CdN2E020942@repo.freebsd.org> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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, 01 Sep 2018 13:12:21 -0000 On Sat, Sep 1, 2018, at 14:39, Jan Beich wrote: > Author: jbeich > Date: Sat Sep 1 12:39:23 2018 > New Revision: 478679 > URL: https://svnweb.freebsd.org/changeset/ports/478679 > > Log: > devel/boost-python-libs: unbreak in C++17 mode > > In file included from libs/python/src/converter/from_python.cpp:6: > In file included from ./boost/python/converter/from_python.hpp:8: > In file included from ./boost/python/detail/prefix.hpp:13: > In file included from ./boost/python/detail/wrap_python.hpp:151: > In file included from /usr/local/include/python2.7/Python.h:88: > /usr/local/include/python2.7/unicodeobject.h:534:5: error: ISO C++17 > does not allow 'register' storage class specifier [-Wregister] > register PyObject *obj, /* Object */ > ^~~~~~~~~ > /usr/local/include/python2.7/unicodeobject.h:553:5: error: ISO C++17 > does not allow 'register' storage class specifier [-Wregister] > register PyObject *obj /* Object */ > ^~~~~~~~~ > /usr/local/include/python2.7/unicodeobject.h:575:5: error: ISO C++17 > does not allow 'register' storage class specifier [-Wregister] > register const wchar_t *w, /* wchar_t buffer */ > ^~~~~~~~~ > /usr/local/include/python2.7/unicodeobject.h:593:5: error: ISO C++17 > does not allow 'register' storage class specifier [-Wregister] > register wchar_t *w, /* wchar_t buffer */ > ^~~~~~~~~ Should we just patch lang/python27 to remove 'register' here instead of having to patch various ports now and in the future? AFAIUI 'register' is quite useless nowadays.