diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmessage/llhttpassetstorage.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/llmessage/llhttpassetstorage.cpp b/linden/indra/llmessage/llhttpassetstorage.cpp index d83349b..b6c20b9 100644 --- a/linden/indra/llmessage/llhttpassetstorage.cpp +++ b/linden/indra/llmessage/llhttpassetstorage.cpp | |||
@@ -38,7 +38,11 @@ | |||
38 | #include "llvfile.h" | 38 | #include "llvfile.h" |
39 | #include "llvfs.h" | 39 | #include "llvfs.h" |
40 | 40 | ||
41 | #include "zlib/zlib.h" | 41 | #ifdef LL_STANDALONE |
42 | # include <zlib.h> | ||
43 | #else | ||
44 | # include "zlib/zlib.h" | ||
45 | #endif | ||
42 | 46 | ||
43 | const U32 MAX_RUNNING_REQUESTS = 1; | 47 | const U32 MAX_RUNNING_REQUESTS = 1; |
44 | const F32 MAX_PROCESSING_TIME = 0.005f; | 48 | const F32 MAX_PROCESSING_TIME = 0.005f; |