diff options
author | ryoon <ryoon@pkgsrc.org> | 2012-01-16 21:05:01 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2012-01-16 21:05:01 +0000 |
commit | db1d24d2b5108883cb7bcbbff18e1f061f755629 (patch) | |
tree | 8f7c4c36cc821b50f5573f0f72acb4b7b24adb36 /editors | |
parent | 279f45e580b21e0b1b14d1913889f5b46a926730 (diff) | |
download | pkgsrc-db1d24d2b5108883cb7bcbbff18e1f061f755629.tar.gz |
Fix PR pkg/45803
With boost 1.48.0, overload is no longer needed.
Tested on NetBSD/i386 5.99.59.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Sigil/distinfo | 3 | ||||
-rw-r--r-- | editors/Sigil/patches/patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/editors/Sigil/distinfo b/editors/Sigil/distinfo index 4ba24d5959d..bc8215e8db2 100644 --- a/editors/Sigil/distinfo +++ b/editors/Sigil/distinfo @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.13 2011/10/14 09:49:06 ryoon Exp $ +$NetBSD: distinfo,v 1.14 2012/01/16 21:05:01 ryoon Exp $ SHA1 (Sigil-0.4.2-Code.zip) = 67464f521c1b11641812b6959549a842546b4f8d RMD160 (Sigil-0.4.2-Code.zip) = c0834a04cdc67f8d066e4a66c43973a6013866e0 Size (Sigil-0.4.2-Code.zip) = 10104606 bytes SHA1 (patch-CMakeLists.txt) = 1e7691d8c318b8d8bb9f76462cc50325fad387d7 +SHA1 (patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp) = 0977053a34b81c27cfb2408c9da9b77b69c76854 SHA1 (patch-src_ZipArchive_DirEnumerator.cpp) = 1430a73cb771c77bd15fc32768a3accfd70ee28b SHA1 (patch-src_ZipArchive_ZipFile__stl.cpp) = d7db211cfd373a3d4ead90da67d0b9d445baa26f SHA1 (patch-src_ZipArchive_ZipPlatform__lnx.cpp) = 9d552417e86c77584b952bc07b06e75eaa02a68d diff --git a/editors/Sigil/patches/patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp b/editors/Sigil/patches/patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp new file mode 100644 index 00000000000..3032f71a172 --- /dev/null +++ b/editors/Sigil/patches/patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp @@ -0,0 +1,23 @@ +$NetBSD: patch-src_FlightCrew_Validators_Opf_ReachabilityAnalysis.cpp,v 1.1 2012/01/16 21:05:02 ryoon Exp $ + +--- src/FlightCrew/Validators/Opf/ReachabilityAnalysis.cpp.orig 2011-09-01 12:47:32.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 + { |