From owner-svn-ports-all@freebsd.org Sat Nov 12 12:59:14 2016 Return-Path: Delivered-To: svn-ports-all@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 E25DAC3D4AC; Sat, 12 Nov 2016 12:59:14 +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 B7E9217C5; Sat, 12 Nov 2016 12:59:14 +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 uACCxD1K019668; Sat, 12 Nov 2016 12:59:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uACCxDUI019667; Sat, 12 Nov 2016 12:59:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611121259.uACCxDUI019667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 12 Nov 2016 12:59:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425947 - head/graphics/libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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, 12 Nov 2016 12:59:15 -0000 Author: jbeich Date: Sat Nov 12 12:59:13 2016 New Revision: 425947 URL: https://svnweb.freebsd.org/changeset/ports/425947 Log: graphics/libetonyek01: unbreak build on 9.x In file included from conftest.cpp:43: In file included from /usr/local/include/boost/spirit/include/phoenix.hpp:13: In file included from /usr/local/include/boost/spirit/home/phoenix.hpp:10: In file included from /usr/local/include/boost/spirit/home/phoenix/algorithm.hpp:10: In file included from /usr/local/include/boost/spirit/home/phoenix/stl/algorithm/iteration.hpp:20: In file included from /usr/local/include/boost/spirit/home/phoenix/function/function.hpp:10: In file included from /usr/local/include/boost/spirit/home/phoenix/core/compose.hpp:16: In file included from /usr/local/include/boost/spirit/home/phoenix/core/composite.hpp:10: In file included from /usr/local/include/boost/spirit/home/phoenix/core/actor.hpp:18: In file included from /usr/local/include/boost/spirit/home/phoenix/core/basic_environment.hpp:18: In file included from /usr/local/include/boost/fusion/include/mpl.hpp:11: In file included from /usr/local/include/boost/fusion/mpl.hpp:17: In file included from /usr/local/include/boost/fusion/mpl/clear.hpp:12: In file included from /usr/local/include/boost/fusion/mpl/detail/clear.hpp:12: In file included from /usr/local/include/boost/fusion/container/map/map_fwd.hpp:24: /usr/local/include/boost/fusion/container/map/detail/map_impl.hpp:76:23: error: no template named 'forward' in namespace 'std'; did you mean 'advance_detail::forward'? : rest_type(std::forward(*static_cast(this))) ^~~~~~~~~~~~ advance_detail::forward /usr/local/include/boost/fusion/iterator/detail/advance.hpp:37:12: note: 'advance_detail::forward' declared here struct forward ^ In file included from /usr/local/include/glm/detail/func_trigonometric.hpp:205:0, from /usr/local/include/glm/trigonometric.hpp:35, from /usr/local/include/glm/glm.hpp:110, from conftest.cpp:49: /usr/local/include/glm/detail/func_trigonometric.inl:166:14: error: 'std::asinh' has not been declared using std::asinh; ^ In file included from /usr/local/include/glm/detail/func_common.hpp:455:0, from /usr/local/include/glm/common.hpp:35, from /usr/local/include/glm/glm.hpp:112, from conftest.cpp:49: /usr/local/include/glm/detail/func_common.inl:229:16: error: 'std::trunc' has not been declared using ::std::trunc; ^ /usr/local/include/glm/detail/func_common.inl:248:16: error: 'std::round' has not been declared using ::std::round; ^ Reported by: pkg-fallout, Robert Backhaus Modified: head/graphics/libetonyek01/Makefile (contents, props changed) Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Sat Nov 12 12:46:33 2016 (r425946) +++ head/graphics/libetonyek01/Makefile Sat Nov 12 12:59:13 2016 (r425947) @@ -24,9 +24,11 @@ OPTIONS_DEFINE= TEST CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include +CXXFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \ + -D_DECLARE_C99_LDBL_MATH # XXX ports/193528 GNU_CONFIGURE= yes -USES= autoreconf compiler:c++11-lang gmake libtool pathfix pkgconfig tar:xz +USES= autoreconf compiler:c++11-lib gmake libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip