ALL: sync with scummvm

This commit is contained in:
Pawel Kolodziejski
2013-10-13 11:30:34 +02:00
parent b1a04651a3
commit 790db038c0
118 changed files with 4006 additions and 5809 deletions
+5
View File
@@ -64,6 +64,11 @@ std::string processLibraryName(std::string name) {
if (pos != std::string::npos)
return name.replace(pos, 7, "");
// Remove "-static" in lib name
pos = name.find("-static");
if (pos != std::string::npos)
return name.replace(pos, 7, "");
// Replace "zlib" by "libz"
if (name == "zlib")
return "libz";