aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llhttpassetstorage.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llmessage/llhttpassetstorage.cpp6
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
43const U32 MAX_RUNNING_REQUESTS = 1; 47const U32 MAX_RUNNING_REQUESTS = 1;
44const F32 MAX_PROCESSING_TIME = 0.005f; 48const F32 MAX_PROCESSING_TIME = 0.005f;