eglaysher / rlvm

RealLive clone for Linux and OSX
http://rlvm.net
GNU General Public License v3.0
152 stars 26 forks source link

Build Failed: Missing <sstream> in test/ScriptMachine/ScriptWorld.cpp #8

Closed grandpaul closed 13 years ago

grandpaul commented 13 years ago

Hi,

When building rlvm I found that in test/ScriptMachine/ScriptWorld.cpp there's ostringstream but it doesn't #include which causes build fail. Please consider including the patch as following.

Many Thanks, Paul

Index: rlvm-0.10/test/ScriptMachine/ScriptWorld.cpp
===================================================================
--- rlvm-0.10.orig/test/ScriptMachine/ScriptWorld.cpp   2011-02-06 17:16:19.223986175 +0800
+++ rlvm-0.10/test/ScriptMachine/ScriptWorld.cpp        2011-02-06 17:16:41.807994774 +0800
@@ -29,6 +29,7 @@
 #include <iostream>
 #include <typeinfo>
 #include <string>
+#include <sstream>
 #include <boost/filesystem/operations.hpp>
 #include <boost/filesystem/path.hpp>

eglaysher commented 13 years ago

Fix FTBFS on Debian reported by PaulLiu.

Thanks!

Closed by 733059f97afc32267141b47d5db91950159a9649