summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2020-12-06 20:13:00 +0100
committerCharles Pigott <charlespigott@googlemail.com>2020-12-06 19:25:46 +0000
commitad47ebc1a8cb2a7d678b80a388890f5b61eb0302 (patch)
tree0f19aff5213f10a7218937519d01949f62fb43b7
parent731af1f1f3246720cc262e3f84fdef83114337bc (diff)
downloadopenttd-ad47ebc1a8cb2a7d678b80a388890f5b61eb0302.tar.xz
Change: don't encourage the use of LZO
LZO was used before the first version we track in our version control system, which dates back to Aug 2004. Somewhere before that time a few savegames / scenarios exist which use LZO. No other savegame / scenario does since then. Let's not encourage people to install something that ancient. There are no scenarios on BaNaNaS that require LZO.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5194e2be4..2cee0a4fb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -179,7 +179,7 @@ include(LinkPackage)
link_package(PNG TARGET PNG::PNG ENCOURAGED)
link_package(ZLIB TARGET ZLIB::ZLIB ENCOURAGED)
link_package(LIBLZMA TARGET LibLZMA::LibLZMA ENCOURAGED)
-link_package(LZO ENCOURAGED)
+link_package(LZO)
link_package(XDG_basedir)
if(NOT OPTION_DEDICATED)