"AND NOW FOR SOMETHING COMPLETLY DIFFERNT"
pls add some information to wiki about that FO required more then 2.1 GB of free space to build (ssd users like me want to know that)
possible ubuntu karmic(lucid too but now i don't have any to test this) user story:
- there is need for not official provided ogre
https://launchpad.net/~andrewfenn/+arch ... ter=karmic : sudo add-apt-repository ppa:andrewfenn
- there is need for link to ogre plugin not specified in
http://www.freeorion.org/index.php/Comp ... figuration: ln -s /usr/lib/OGRE/RenderSystem_GL.so .
and there are some warning fixes:
Index: FreeOrion/universe/Species.h
===================================================================
--- FreeOrion/universe/Species.h (wersja 3615)
+++ FreeOrion/universe/Species.h (kopia robocza)
@@ -76,9 +76,9 @@
private:
std::string m_name;
std::string m_description;
+ std::vector<FocusType> m_foci;
std::vector<boost::shared_ptr<const Effect::EffectsGroup> >
m_effects;
- std::vector<FocusType> m_foci;
std::string m_graphic;
friend class boost::serialization::access;
Index: CombatSetupWnd.cpp
===================================================================
--- CombatSetupWnd.cpp (wersja 3615)
+++ CombatSetupWnd.cpp (kopia robocza)
@@ -108,7 +108,7 @@
if (map_it != effect_accounting_map.end())
meter_map = &(map_it->second);
- for (int i = 0; i < meters.size(); ++i) {
+ for (size_t i = 0; i < meters.size(); ++i) {
const MeterType METER_TYPE = meters[i];
const MeterType ASSOCIATED_METER_TYPE = associated_meters[i];