mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
jfsrec: build with boost 1.44.0
Compilation with the latest version, boost 1.47.0, fails as follows: g++ -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -c -o inode.o inode.cpp inode.cpp: In member function 'virtual boost::filesystem3::path jfsrec::Inode::get_full_path()': inode.cpp:70:54: error: invalid conversion from 'bool (*)(const std::string&)' to 'boost::enable_if_c<true, void>::type*' inode.cpp:70:54: error: initializing argument 2 of 'boost::filesystem3::path::path(const Source&, typename boost::enable_if<boost::filesystem3::path_traits::is_pathable<typename boost::decay<Source>::type> >::type*) [with Source = std::basic_string<char>, typename boost::enable_if<boost::filesystem3::path_traits::is_pathable<typename boost::decay<Source>::type> >::type = void]' inode.cpp:72:54: error: invalid conversion from 'bool (*)(const std::string&)' to 'boost::enable_if_c<true, void>::type*' inode.cpp:72:54: error: initializing argument 2 of 'boost::filesystem3::path::path(const Source&, typename boost::enable_if<boost::filesystem3::path_traits::is_pathable<typename boost::decay<Source>::type> >::type*) [with Source = std::basic_string<char>, typename boost::enable_if<boost::filesystem3::path_traits::is_pathable<typename boost::decay<Source>::type> >::type = void]' make[2]: *** [inode.o] Error 1 It appears that jfsrec assumes that fs::path is a string, which isn't true anymore in Boost.FS v3. svn path=/nixpkgs/trunk/; revision=27750
This commit is contained in:
parent
2eb4c12012
commit
14c9d26112
@ -846,7 +846,9 @@ let
|
||||
|
||||
jdiskreport = callPackage ../tools/misc/jdiskreport { };
|
||||
|
||||
jfsrec = callPackage ../tools/filesystems/jfsrec { };
|
||||
jfsrec = callPackage ../tools/filesystems/jfsrec {
|
||||
boost = boost144;
|
||||
};
|
||||
|
||||
jfsutils = callPackage ../tools/filesystems/jfsutils { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user