diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-11-12 17:42:33 -0500 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-11-12 17:42:33 -0500 |
commit | ace36d042e0cd2443ddd07e0bd43d1086a81adcd (patch) | |
tree | 62bb67a73760365aa7c87e91c1b3d03dae4f7aa1 /indra/newview/llmeshrepository.cpp | |
parent | 63466f0ecae64cad8d2f74ccd1ade29121a26a95 (diff) |
BUILDFIX allow curl host name scrub to work on non-windows platforms
Needed an include for gethostbyname to be called properly.
Diffstat (limited to 'indra/newview/llmeshrepository.cpp')
-rw-r--r-- | indra/newview/llmeshrepository.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 94ed2697c5..f00a8565f7 100644 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -59,6 +59,9 @@ #include "material_codes.h" #include "pipeline.h" +#ifndef LL_WINDOWS +#include "netdb.h" +#endif #include <queue> |