# # # patch "paths.cc" # from [caac11284c391b9fc6abfaa75e5986e77e84b2ff] # to [1013ba10017d49914ab3dfb0c894c4aafcbcedc2] # ============================================================ --- paths.cc caac11284c391b9fc6abfaa75e5986e77e84b2ff +++ paths.cc 1013ba10017d49914ab3dfb0c894c4aafcbcedc2 @@ -10,6 +10,7 @@ #include #include +#include #include #include @@ -254,6 +255,9 @@ normalize_path(fs::path const & in) static fs::path normalize_path(fs::path const & in) { +#if BOOST_VERSION < 103400 + return in.normalize(); +#else fs::path out; vector stack; for (fs::path::iterator i = in.begin(); i != in.end(); ++i) @@ -278,6 +282,7 @@ normalize_path(fs::path const & in) out /= *i; } return out; +#endif } static void