diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-09-30 02:26:44 +0200 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-09-30 02:26:44 +0200 |
commit | ecbc00351aed97cfe2f87267789732ff00c2333b (patch) | |
tree | c4098c4c26c936254f40c5dd2ba12fd54a32ca0e /indra/llxuixml | |
parent | cb3042d84d51532c0b6953b69bdc8f9651ea7631 (diff) | |
parent | 92008ee7381b8f2118259fcaf12ca85bed392080 (diff) |
merged STORM-222 (expat.h not found on STANDALONE)
Diffstat (limited to 'indra/llxuixml')
-rw-r--r-- | indra/llxuixml/llxuiparser.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llxuixml/llxuiparser.cpp b/indra/llxuixml/llxuiparser.cpp index e1ad9a5c71..9942af6b37 100644 --- a/indra/llxuixml/llxuiparser.cpp +++ b/indra/llxuixml/llxuiparser.cpp @@ -29,7 +29,13 @@ #include "llxuiparser.h" #include "llxmlnode.h" + +#ifdef LL_STANDALONE +#include <expat.h> +#else #include "expat/expat.h" +#endif + #include <fstream> #include <boost/tokenizer.hpp> //#include <boost/spirit/include/qi.hpp> |