From owner-svn-ports-head@freebsd.org Thu Aug 1 19:01:20 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 01D5BC607D; Thu, 1 Aug 2019 19:01:20 +0000 (UTC) (envelope-from pkubaj@anongoth.pl) Received: from mail.anongoth.pl (mail.anongoth.pl [46.248.190.61]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "anongoth.pl", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46004t6Tnvz4777; Thu, 1 Aug 2019 19:01:18 +0000 (UTC) (envelope-from pkubaj@anongoth.pl) Received: from anongoth.pl (unknown [192.168.1.154]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: pkubaj@anongoth.pl) by mail.anongoth.pl (Postfix) with ESMTPSA id A6FF83A16E; Thu, 1 Aug 2019 21:01:08 +0200 (CEST) Date: Thu, 1 Aug 2019 21:01:07 +0200 From: Piotr Kubaj Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r507819 - head/math/g2o Message-ID: <20190801190107.GB25273@ThinkPad-X200.g.anongoth.pl> References: <201908011856.x71IuKkO000568@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="iBm6TSUJjlbJhnyG" Content-Disposition: inline In-Reply-To: <201908011856.x71IuKkO000568@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: 46004t6Tnvz4777 X-Spamd-Bar: ----- X-Spamd-Result: default: False [-5.57 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; R_SPF_ALLOW(-0.20)[+ip4:46.248.190.61]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,text/plain]; TO_DN_NONE(0.00)[]; IP_SCORE(-3.71)[ip: (-9.91), ipnet: 46.248.160.0/19(-4.92), asn: 47544(-3.78), country: PL(0.06)]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; DMARC_POLICY_ALLOW(-0.50)[anongoth.pl,reject]; MISSING_TO(2.00)[]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:47544, ipnet:46.248.160.0/19, country:PL]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] 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: Thu, 01 Aug 2019 19:01:20 -0000 --iBm6TSUJjlbJhnyG Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Sorry, I meant https://reviews.freebsd.org/D20994 for the DR. On 19-08-01 18:56:20, Piotr Kubaj wrote: >Author: pkubaj >Date: Thu Aug 1 18:56:20 2019 >New Revision: 507819 >URL: https://svnweb.freebsd.org/changeset/ports/507819 > >Log: > math/g2o: fix build on non-x86 architectures > > This port seems to enable all SSE* CPU features even outside of x86 platforms. Disable that to fix build. > > Also add USES=compiler:c++11-lang, the port needs C++11 and add USES=gl. > > PR: 238895 > Approved by: yuri (maintainer timeout), linimon (mentor) > Differential Revision: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238895 > >Modified: > head/math/g2o/Makefile > >Modified: head/math/g2o/Makefile >============================================================================== >--- head/math/g2o/Makefile Thu Aug 1 18:51:50 2019 (r507818) >+++ head/math/g2o/Makefile Thu Aug 1 18:56:20 2019 (r507819) >@@ -15,7 +15,7 @@ LICENSE_COMB= dual > LIB_DEPENDS= libcxsparse.so:math/suitesparse \ > libQGLViewer-qt5.so:graphics/libQGLViewer > >-USES= cmake eigen:3 qt:5 >+USES= cmake compiler:c++11-lang gl eigen:3 qt:5 > USE_GITHUB= yes > GH_ACCOUNT= RainerKuemmerle > USE_GL= gl glu >@@ -47,6 +47,12 @@ SSE2_CMAKE_ON= -DDISABLE_SSE3:BOOL=ON -DDISABLE_SSE4_ > SSE3_CMAKE_ON= -DDISABLE_SSE4_1:BOOL=ON -DDISABLE_SSE4_2:BOOL=ON -DDISABLE_SSE4_A:BOOL=ON > SSE41_CMAKE_ON= -DDISABLE_SSE4_2:BOOL=ON -DDISABLE_SSE4_A:BOOL=ON > SSE42_CMAKE_ON= -DDISABLE_SSE4_A:BOOL=ON >+ >+.include >+ >+.if ${ARCH} != amd64 && ${ARCH} != i386 >+CMAKE_ARGS+= -DDISABLE_SSE2:BOOL=ON -DDISABLE_SSE3:BOOL=ON -DDISABLE_SSE4_1:BOOL=ON -DDISABLE_SSE4_2:BOOL=ON -DDISABLE_SSE4_A:BOOL=ON >+.endif > > post-patch: > @${REINPLACE_CMD} -e 's|/usr/include|${LOCALBASE}/include|' \ > --iBm6TSUJjlbJhnyG Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEycyIeNkkgohzsoorelmbhSCDnJ0FAl1DNvNfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEM5 Q0M4ODc4RDkyNDgyODg3M0IyOEEyQjdBNTk5Qjg1MjA4MzlDOUQACgkQelmbhSCD nJ3hag//SsKnU2ictsVoqwIAOVBvgrJkZTQVee0QEXtYO4hezNSNUbpiZm441h8E tyXiWCPbNerN2oU1sQkOUzkN5XIEpME3PY+BVT2tRuUXYMOSxo9jfwAP3XPBgGxB rVwUU2LaWRXjlaGv4KedNZlJx+sIROPfjBxx0pt7XwsJ9W25WCLvKvVpgWcrLbjy +1B6PSVyRyMztuFdcZSUI5xM8YIqDcg0edGdoVwl32BRJt+H7jYhDoFmq48wlLoB GI0K5AzH8gF4cRZxv5tMnnhdvxuoyrLKWDkQQtkeaLegmFGhR2tNqgCLihCcVUij XGBP/1tXK7r/iQAPbbQEI7DC0CQQSVlhEuMup9PJ5ICMt3UoI63xLpeupj2hzFJr 637IxexHpE/s5hDG0ac/G5gpHj2/kjda7XnrlkMF3IUzKZJssi1q9FFCp2RQCaey d2gU8wi7K+9NBSgiEzTvp/4DUYpHWMUQ9m0r38EB8+dCKwZw98xmEUMJHTT8tZw1 gu2vkfvfNUXvrMqJL0rjmnj4EOxr+8IenVqDe9T9zYnx4JGs7DyOdjEkyh9q0aez UcRpfSHDZc33bA04gmKb4Q0Yu5YyNtoqmo3lvV5cRJZQQFagsqOOI6vht8umVDPc 4kAhR6RO0Rfh+CpQxC3bM8e+jqedksDUX3tDtfg1AzHKLwxch/g= =1Wnl -----END PGP SIGNATURE----- --iBm6TSUJjlbJhnyG--