mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Require boost-1.69, drop boost_system lib
Boost 1.89 no longer offers the deprecated library for boost_system [1], so drop it from the list of libraries to link against. This effectively bumps the minimum required boost version to 1.69 [2]. [1]7a495bb46d[1]2fa0a00583Fixes: #8471 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
parent
e97f43b692
commit
618ffc7bf9
1 changed files with 3 additions and 3 deletions
|
|
@ -234,9 +234,9 @@ extern_lib_defs = {
|
|||
add_default_links({
|
||||
-- The following are not strictly link dependencies on all systems, but
|
||||
-- are included for compatibility with different versions of Boost
|
||||
android_names = { "boost_filesystem-gcc-mt", "boost_system-gcc-mt" },
|
||||
unix_names = { os.findlib("boost_filesystem-mt") and "boost_filesystem-mt" or "boost_filesystem", os.findlib("boost_system-mt") and "boost_system-mt" or "boost_system" },
|
||||
osx_names = { "boost_filesystem", "boost_system" },
|
||||
android_names = { "boost_filesystem-gcc-mt" },
|
||||
unix_names = { os.findlib("boost_filesystem-mt") and "boost_filesystem-mt" or "boost_filesystem" },
|
||||
osx_names = { "boost_filesystem" },
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue