summaryrefslogtreecommitdiff
path: root/games-strategy/0ad/files/0ad-0.0.26_alpha-boost-1.85.patch
blob: cddec5e2a86c1141345fcb62299d8ff785225298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
https://bugs.gentoo.org/932254
https://code.wildfiregames.com/file/data/ubpvat3mgrfn6gnaquuq/PHID-FILE-d7xwslolc5hv2vwv66tb/D5267.diff

Index: source/graphics/TextureManager.cpp
===================================================================
--- a/source/graphics/TextureManager.cpp
+++ b/source/graphics/TextureManager.cpp
@@ -806,7 +806,7 @@
 				files.push_back(f);
 			p = p / GetWstringFromWpath(*it);
 		}
-		return m_TextureConverter.ComputeSettings(GetWstringFromWpath(srcPath.leaf()), files);
+		return m_TextureConverter.ComputeSettings(GetWstringFromWpath(srcPath.filename()), files);
 	}
 
 	/**
Index: source/lib/file/file_system.cpp
===================================================================
--- a/source/lib/file/file_system.cpp
+++ b/source/lib/file/file_system.cpp
@@ -229,7 +229,11 @@
 	try
 	{
 		if(override_if_exists)
+#if BOOST_VERSION >=107400
+			fs::copy_file(fs::path(path.string()), fs::path(newPath.string()), boost::filesystem::copy_options::overwrite_existing);
+#else
 			fs::copy_file(fs::path(path.string()), fs::path(newPath.string()), boost::filesystem::copy_option::overwrite_if_exists);
+#endif
 		else
 			fs::copy_file(fs::path(path.string()), fs::path(newPath.string()));
 	}