summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorAndrew Meadows <andrew@lindenlab.com>2007-02-07 20:33:52 +0000
committerAndrew Meadows <andrew@lindenlab.com>2007-02-07 20:33:52 +0000
commitbd48685d3489e14e709673d79b4516fd980398d8 (patch)
treed556e55f5ee0dede121d8e1c1542a837ef87dc14 /indra/test
parentd0d4670f4941dcf7430fb1269c6613140ecf3ff7 (diff)
Fixed a linux build issue when the llhavok suddenly required rtti in order to link.
I added a #ifndef hack to v3math.h to eliminate LLString's from the llhavok project. I also removed lluuid.h's dependency on LLString (using std::string) instead and then fixed a bunch of bad dependency fallout on a few files around the project that suddenly lost their hidden access to some fundamental includes. The important parts were reviewed with James.
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/llpipeutil.cpp1
-rw-r--r--indra/test/llsd_new_tut.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/indra/test/llpipeutil.cpp b/indra/test/llpipeutil.cpp
index 3a15bfdb7e..f4b1b28c1d 100644
--- a/indra/test/llpipeutil.cpp
+++ b/indra/test/llpipeutil.cpp
@@ -10,6 +10,7 @@
#include "llpipeutil.h"
#include <stdlib.h>
+#include <sstream>
#include "llbufferstream.h"
#include "lldefs.h"
diff --git a/indra/test/llsd_new_tut.cpp b/indra/test/llsd_new_tut.cpp
index e99da7195a..6a38a1a8ea 100644
--- a/indra/test/llsd_new_tut.cpp
+++ b/indra/test/llsd_new_tut.cpp
@@ -12,6 +12,7 @@
#include "lltut.h"
#include "llsd.h"
+#include "llstring.h"
namespace tut
{