From nobody@FreeBSD.org  Tue Oct  1 14:11:57 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTP id A73EA9CC
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  1 Oct 2013 14:11:57 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 952F52E8A
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  1 Oct 2013 14:11:57 +0000 (UTC)
Received: from oldred.freebsd.org ([127.0.1.6])
	by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r91EBvmP040086
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 1 Oct 2013 14:11:57 GMT
	(envelope-from nobody@oldred.freebsd.org)
Received: (from nobody@localhost)
	by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r91EBvfP040085;
	Tue, 1 Oct 2013 14:11:57 GMT
	(envelope-from nobody)
Message-Id: <201310011411.r91EBvfP040085@oldred.freebsd.org>
Date: Tue, 1 Oct 2013 14:11:57 GMT
From: Justin Hibbits <jrh29@alumni.cwru.edu>
To: freebsd-gnats-submit@FreeBSD.org
Subject: devel/boost-libs fails to build on non-x86
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         182549
>Category:       ports
>Synopsis:       devel/boost-libs fails to build on non-x86
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    koobs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 01 14:20:00 UTC 2013
>Closed-Date:    Sat Dec 14 11:55:51 UTC 2013
>Last-Modified:  Sat Dec 14 12:00:00 UTC 2013
>Originator:     Justin Hibbits
>Release:        10-CURRENT
>Organization:
>Environment:
>Description:
devel/boost-libs fails to build its test suite on non-x86, due to not including osreldate.h, in the execution_monitor.  A fix was applied to the trunk, but never merged into the release branches.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: boost/test/impl/execution_monitor.ipp
===================================================================
--- boost/test/impl/execution_monitor.ipp	(revision 62779)
+++ boost/test/impl/execution_monitor.ipp	(revision 62780)
@@ -127,6 +127,8 @@
 
 #  if defined(__FreeBSD__)  
 
+#    include <osreldate.h>
+
 #    ifndef SIGPOLL
 #      define SIGPOLL SIGIO
 #    endif


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->office 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Oct 1 14:20:07 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=182549 

From: Justin Hibbits <chmeeedalf@gmail.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/182549: devel/boost-libs fails to build on non-x86
Date: Fri, 13 Dec 2013 23:23:56 -0800

 The original trac ticket and fix can be found at:
 https://svn.boost.org/trac/boost/ticket/3897
 
 The patch is only in trunk, it's not in the release branch.  If trunk
 ever does branch again, it will be included in likely a later major
 release (boost2, maybe?).
 
 - Justin
Responsible-Changed-From-To: office->koobs 
Responsible-Changed-By: koobs 
Responsible-Changed-When: Sat Dec 14 11:55:31 UTC 2013 
Responsible-Changed-Why:  
I'll take it. Maintainer timeout (2 months) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=182549 
State-Changed-From-To: open->closed 
State-Changed-By: koobs 
State-Changed-When: Sat Dec 14 11:55:50 UTC 2013 
State-Changed-Why:  
Committed. Thanks Justin! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=182549 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/182549: commit references a PR
Date: Sat, 14 Dec 2013 11:53:22 +0000 (UTC)

 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 <osreldate.h>
 ++
 + #    ifndef SIGPOLL
 + #      define SIGPOLL SIGIO
 + #    endif
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
