diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-05-12 20:43:55 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-05-12 20:43:55 +0800 |
commit | a5dcf2912463f14818370d649a8c418e16fb6ff0 (patch) | |
tree | bb070c1b8bdf96f3fd15f6efd973200931e3ed26 /indra/llcommon/llsys.cpp | |
parent | 2a57b9f215fded116667a357c7f0d3992f803864 (diff) |
Not rely on LL_USESYSTEMLIBS for choosing zlib impl
with the effect of choosing zlib over zlib-ng in any condition, which
has been the case so far. But this opens the way to relying on some
other condition, such as which platform, for deciding whether we can
use zlib-ng or not, instead of zlib. So we can freely use, for example
LL's prebuilt, zlib-ng while still using system libraries for others.
Diffstat (limited to 'indra/llcommon/llsys.cpp')
-rw-r--r-- | indra/llcommon/llsys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 94d59adf29..5c35aeb476 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -33,7 +33,7 @@ #include "llsys.h" #include <iostream> -#ifdef LL_USESYSTEMLIBS +#if 1 # include <zlib.h> #else # include "zlib-ng/zlib.h" |