Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Dec 2017 12:12:28 +0000 (UTC)
From:      "Lev A. Serebryakov" <lev@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455578 - in head/devel/msp430-debug-stack: . files
Message-ID:  <201712051212.vB5CCS3k084017@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lev
Date: Tue Dec  5 12:12:27 2017
New Revision: 455578
URL: https://svnweb.freebsd.org/changeset/ports/455578

Log:
    Fix namespace conflict for new Boost.
  
  PR:		224094
  Reported by:	jbeich@FreeBSD.org

Added:
  head/devel/msp430-debug-stack/files/patch-ThirdParty_BSL430__DLL_BSL430__DLL_Physical__Interfaces_MSPBSL__PhysicalInterfaceUSB.cpp   (contents, props changed)
Modified:
  head/devel/msp430-debug-stack/Makefile

Modified: head/devel/msp430-debug-stack/Makefile
==============================================================================
--- head/devel/msp430-debug-stack/Makefile	Tue Dec  5 11:43:41 2017	(r455577)
+++ head/devel/msp430-debug-stack/Makefile	Tue Dec  5 12:12:27 2017	(r455578)
@@ -2,7 +2,7 @@
 
 PORTNAME=	msp430-debug-stack
 PORTVERSION=	3.10.001.000
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	devel
 MASTER_SITES=	http://www.ti.com/lit/sw/slac460v/ \
 		http://www.ti.com/lit/ug/slau320z/:doc1 \

Added: head/devel/msp430-debug-stack/files/patch-ThirdParty_BSL430__DLL_BSL430__DLL_Physical__Interfaces_MSPBSL__PhysicalInterfaceUSB.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/msp430-debug-stack/files/patch-ThirdParty_BSL430__DLL_BSL430__DLL_Physical__Interfaces_MSPBSL__PhysicalInterfaceUSB.cpp	Tue Dec  5 12:12:27 2017	(r455578)
@@ -0,0 +1,11 @@
+--- ThirdParty/BSL430_DLL/BSL430_DLL/Physical_Interfaces/MSPBSL_PhysicalInterfaceUSB.cpp.orig	2017-12-05 15:03:57.734396000 +0300
++++ ThirdParty/BSL430_DLL/BSL430_DLL/Physical_Interfaces/MSPBSL_PhysicalInterfaceUSB.cpp	2017-12-05 15:04:17.062811000 +0300
+@@ -189,7 +189,7 @@
+ 			return ERROR_READING_DATA; 
+ 		}
+ 
+-		this_thread::sleep_for(chrono::milliseconds(500));
++		this_thread::sleep_for(std::chrono::milliseconds(500));
+ 	}
+ 
+ 	return 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712051212.vB5CCS3k084017>