c9e6e22f21
As same as PR pkg/45803.
25 lines
639 B
C++
25 lines
639 B
C++
$NetBSD: patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp,v 1.1 2012/01/16 21:09:23 ryoon Exp $
|
|
|
|
* Fix build with boost 1.48.0.
|
|
|
|
--- src/FlightCrew/Validators/Opf/ReachabilityAnalysis.cpp.orig 2011-08-11 12:03:56.000000000 +0000
|
|
+++ src/FlightCrew/Validators/Opf/ReachabilityAnalysis.cpp
|
|
@@ -26,7 +26,9 @@
|
|
#include <XmlUtils.h>
|
|
#include "Misc/DetermineMimetype.h"
|
|
#include "Misc/Utilities.h"
|
|
+#include <boost/version.hpp>
|
|
|
|
+#if ( BOOST_VERSION < 104800 )
|
|
namespace boost
|
|
{
|
|
|
|
@@ -48,7 +50,7 @@ namespace filesystem3
|
|
} // namespace filesystem3
|
|
|
|
} // namespace boost
|
|
-
|
|
+#endif // BOOST_VERSION
|
|
|
|
namespace FlightCrew
|
|
{
|