summaryrefslogtreecommitdiff
path: root/src/filesystem.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-21 23:06:58 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-23 11:52:24 +0200
commit6fba38bd59450e167e664153a31f41e97a500ffc (patch)
tree9c52eb309ba192eb9bc19ea5b88ec97f4f304178 /src/filesystem.cc
parent6d1a7e90ec3244b8e532e03c5209d5e8448f422e (diff)
Support new boost versions (DoM #2867).v1.8.109
Diffstat (limited to 'src/filesystem.cc')
-rw-r--r--src/filesystem.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/filesystem.cc b/src/filesystem.cc
index 83c55ab0..bdd15039 100644
--- a/src/filesystem.cc
+++ b/src/filesystem.cc
@@ -107,7 +107,11 @@ dcp::filesystem::copy_file(boost::filesystem::path const& from, boost::filesyste
void
+#ifdef LIBDCP_HAVE_COPY_OPTIONS
+dcp::filesystem::copy_file(boost::filesystem::path const& from, boost::filesystem::path const& to, boost::filesystem::copy_options option)
+#else
dcp::filesystem::copy_file(boost::filesystem::path const& from, boost::filesystem::path const& to, boost::filesystem::copy_option option)
+#endif
{
boost::filesystem::copy_file(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to), option);
}
@@ -247,7 +251,7 @@ dcp::filesystem::create_symlink(boost::filesystem::path const& from, boost::file
std::string
dcp::filesystem::extension(boost::filesystem::path const& path)
{
- return boost::filesystem::extension(dcp::filesystem::fix_long_path(path));
+ return dcp::filesystem::fix_long_path(path).extension().string();
}