summaryrefslogtreecommitdiffstats
path: root/graphics/hugin/boost-1.85.0-patch
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/hugin/boost-1.85.0-patch')
-rw-r--r--graphics/hugin/boost-1.85.0-patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/graphics/hugin/boost-1.85.0-patch b/graphics/hugin/boost-1.85.0-patch
deleted file mode 100644
index d2909ded9b..0000000000
--- a/graphics/hugin/boost-1.85.0-patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/hugin_base/hugin_utils/filesystem.h.old 2023-05-08 20:19:14.000000000 +0200
-+++ src/hugin_base/hugin_utils/filesystem.h 2024-04-21 10:00:22.770138350 +0200
-@@ -64,6 +64,12 @@
- #endif
- #include <boost/filesystem.hpp>
- namespace fs = boost::filesystem;
-- #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
-+ #if BOOST_VERSION>=107400
-+ // in Boost 1.74 and later filesystem::copy_option is deprecated
-+ // use filesystem::copy_options instead
-+ #define OVERWRITE_EXISTING boost::filesystem::copy_options::overwrite_existing
-+ #else
-+ #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
-+ #endif
- #endif
- #endif // _HUGIN_UTILS_FILESYSTEM_H