mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
ALL: sync with scummvm
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user