From owner-svn-ports-head@freebsd.org Mon Nov 21 06:52:28 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25368C4C428; Mon, 21 Nov 2016 06:52:28 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id D6BC7269; Mon, 21 Nov 2016 06:52:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAL6qRWS010482; Mon, 21 Nov 2016 06:52:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAL6qR39010481; Mon, 21 Nov 2016 06:52:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611210652.uAL6qR39010481@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 21 Nov 2016 06:52:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426693 - head/devel/liblas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 21 Nov 2016 06:52:28 -0000 Author: jbeich Date: Mon Nov 21 06:52:26 2016 New Revision: 426693 URL: https://svnweb.freebsd.org/changeset/ports/426693 Log: devel/liblas: unbreak build with boost 1.62 on 9.x In file included from /usr/local/include/boost/atomic/capabilities.hpp:19, from /usr/local/include/boost/atomic/atomic.hpp:19, from /usr/local/include/boost/atomic.hpp:12, from /usr/local/include/boost/thread/pthread/once_atomic.hpp:20, from /usr/local/include/boost/thread/once.hpp:20, from src/../include/liblas/detail/singleton.hpp:49, from src/../include/liblas/header.hpp:54, from src/../include/liblas/reader.hpp:46, from src/../include/liblas/index.hpp:45, from src/../include/liblas/detail/index/indexoutput.hpp:46, from src/detail/index/indexoutput.cpp:43: /usr/local/include/boost/atomic/detail/int_sizes.hpp:137:2: error: #error Boost.Atomic: Failed to determine builtin integer sizes, the target platform is not supported. Please, report to the developers. /usr/local/include/boost/atomic/detail/bitwise_cast.hpp: In function 'To boost::atomics::detail::bitwise_cast(const From&) [with To = long unsigned int, From = void*]': /usr/local/include/boost/atomic/detail/atomic_template.hpp:556: instantiated from here /usr/local/include/boost/atomic/detail/bitwise_cast.hpp:39: warning: missing initializer for member 'boost::atomics::detail::bitwise_cast(const From&) [with To = long unsigned int, From = void*]::::to' /usr/local/include/boost/atomic/detail/bitwise_cast.hpp: In function 'To boost::atomics::detail::bitwise_cast(const From&) [with To = void*, From = long unsigned int]': /usr/local/include/boost/atomic/detail/atomic_template.hpp:574: instantiated from here /usr/local/include/boost/atomic/detail/bitwise_cast.hpp:39: warning: missing initializer for member 'boost::atomics::detail::bitwise_cast(const From&) [with To = void*, From = long unsigned int]::::to' PR: 199601 Reported by: antoine (via exp-run) Approved by: portmgr blanket Modified: head/devel/liblas/Makefile (contents, props changed) Modified: head/devel/liblas/Makefile ============================================================================== --- head/devel/liblas/Makefile Mon Nov 21 06:42:03 2016 (r426692) +++ head/devel/liblas/Makefile Mon Nov 21 06:52:26 2016 (r426693) @@ -3,6 +3,7 @@ PORTNAME= liblas PORTVERSION= 1.8.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= wen@FreeBSD.org @@ -15,7 +16,7 @@ LIB_DEPENDS= libboost_thread.so:devel/bo CONFLICTS= liblas12-1.2* -USES= cmake libtool +USES= cmake compiler:c++11-lang libtool LDFLAGS+= -lpthread GNU_CONFIGURE= yes USE_LDCONFIG= yes