forked from JuliaPackaging/Yggdrasil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml_cpp: Changed recipe to build v0.5.3 (JuliaPackaging#7591)
* yaml_cpp: Changed recipe to build v0.5.3 Including: * Added boost_jll as a build dep. * Replaced GitHub automatic archive source with git source. * Added patch for obsolete boost/detail/iterator header. * Fixed Windows library name. * Fixed Clang platforms by enabling C++17 removed features - to get support for std::auto_ptr * Rectified patch for missing <boost/next_prior.hpp> include.
- Loading branch information
1 parent
c743b7b
commit 1ec2fa8
Showing
2 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
Y/yaml_cpp/bundled/patches/missing_boost_next_prior_include.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/include/yaml-cpp/node/detail/iterator.h b/include/yaml-cpp/node/detail/iterator.h | ||
index 2c701af..08e2672 100644 | ||
--- a/include/yaml-cpp/node/detail/iterator.h | ||
+++ b/include/yaml-cpp/node/detail/iterator.h | ||
@@ -11,6 +11,7 @@ | ||
#include "yaml-cpp/node/ptr.h" | ||
#include "yaml-cpp/node/detail/node_iterator.h" | ||
#include <boost/iterator/iterator_adaptor.hpp> | ||
+#include <boost/next_prior.hpp> | ||
#include <boost/utility.hpp> | ||
|
||
namespace YAML { |