From owner-svn-ports-head@FreeBSD.ORG Sat Dec 14 11:53:16 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06AC1287; Sat, 14 Dec 2013 11:53:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E62E91D57; Sat, 14 Dec 2013 11:53:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBEBrFgY053606; Sat, 14 Dec 2013 11:53:15 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBEBrFf3053605; Sat, 14 Dec 2013 11:53:15 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201312141153.rBEBrFf3053605@svn.freebsd.org> From: Kubilay Kocak Date: Sat, 14 Dec 2013 11:53:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336438 - head/devel/boost-libs/files 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.17 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: Sat, 14 Dec 2013 11:53:16 -0000 Author: koobs Date: Sat Dec 14 11:53:15 2013 New Revision: 336438 URL: http://svnweb.freebsd.org/changeset/ports/336438 Log: devel/boost-libs: Backport fix building test framework on non-x86 platforms This change backports an upstream commit [1] to fix building of the test framework on non-x86 systems [2] due to not #include'ing osreldate.h prior to testing __FreeBSD_version. [1] https://svn.boost.org/trac/boost/changeset/62780 [2] https://svn.boost.org/trac/boost/ticket/3897 PR: ports/182549 Submitted by: jhibbits Reviewed by: bapt Approved by: office@ (bapt) Added: head/devel/boost-libs/files/patch-boost__test__impl__execution_monitor.ipp (contents, props changed) Added: head/devel/boost-libs/files/patch-boost__test__impl__execution_monitor.ipp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/boost-libs/files/patch-boost__test__impl__execution_monitor.ipp Sat Dec 14 11:53:15 2013 (r336438) @@ -0,0 +1,16 @@ +# Description: Backport fix building test suite on non-x86 platforms +# PR: ports/182549 +# Upstream Issue: https://svn.boost.org/trac/boost/ticket/3897 +# Upstream Change: https://svn.boost.org/trac/boost/changeset/62780 + +--- ./boost/test/impl/execution_monitor.ipp.orig 2013-12-14 18:22:41.772892518 +1100 ++++ ./boost/test/impl/execution_monitor.ipp 2013-12-14 18:23:15.554395963 +1100 +@@ -156,6 +156,8 @@ + + # if defined(__FreeBSD__) + ++# include ++ + # ifndef SIGPOLL + # define SIGPOLL SIGIO + # endif