|
From: <bru...@us...> - 2008-05-31 21:53:58
|
Revision: 145
http://freepv.svn.sourceforge.net/freepv/?rev=145&view=rev
Author: brunopostle
Date: 2008-05-31 14:54:05 -0700 (Sat, 31 May 2008)
Log Message:
-----------
gcc-4.3.0 fixes
Modified Paths:
--------------
freepv/branches/branch_leonox/src/freepv-mozilla/plugin.cpp
freepv/branches/branch_leonox/src/libfreepv/Image.h
freepv/branches/branch_leonox/src/libfreepv/QTVRDecoder.cpp
freepv/branches/branch_leonox/src/libfreepv/SPiVparser.cpp
freepv/branches/branch_leonox/src/libfreepv/Utils/stringID.cpp
freepv/branches/branch_leonox/src/libfreepv/XMLparser.cpp
Modified: freepv/branches/branch_leonox/src/freepv-mozilla/plugin.cpp
===================================================================
--- freepv/branches/branch_leonox/src/freepv-mozilla/plugin.cpp 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/freepv-mozilla/plugin.cpp 2008-05-31 21:54:05 UTC (rev 145)
@@ -37,6 +37,7 @@
#include <stdio.h>
+#include <cstring>
#include "plugin.h"
Modified: freepv/branches/branch_leonox/src/libfreepv/Image.h
===================================================================
--- freepv/branches/branch_leonox/src/libfreepv/Image.h 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/libfreepv/Image.h 2008-05-31 21:54:05 UTC (rev 145)
@@ -32,6 +32,7 @@
//#include <vector>
#include <string>
#include <assert.h>
+#include <cstdlib>
#include "Platform.h"
Modified: freepv/branches/branch_leonox/src/libfreepv/QTVRDecoder.cpp
===================================================================
--- freepv/branches/branch_leonox/src/libfreepv/QTVRDecoder.cpp 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/libfreepv/QTVRDecoder.cpp 2008-05-31 21:54:05 UTC (rev 145)
@@ -41,6 +41,7 @@
#include <math.h>
#include <errno.h>
#include <vector>
+#include <cstring>
#include <zlib.h>
Modified: freepv/branches/branch_leonox/src/libfreepv/SPiVparser.cpp
===================================================================
--- freepv/branches/branch_leonox/src/libfreepv/SPiVparser.cpp 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/libfreepv/SPiVparser.cpp 2008-05-31 21:54:05 UTC (rev 145)
@@ -26,6 +26,7 @@
#include <iostream>
#include <assert.h>
#include "Error.h"
+#include <cstring>
using namespace FPV;
Modified: freepv/branches/branch_leonox/src/libfreepv/Utils/stringID.cpp
===================================================================
--- freepv/branches/branch_leonox/src/libfreepv/Utils/stringID.cpp 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/libfreepv/Utils/stringID.cpp 2008-05-31 21:54:05 UTC (rev 145)
@@ -23,6 +23,7 @@
*/
#include "stringID.h"
+#include <cstdlib>
namespace FPV{
namespace Utils{
Modified: freepv/branches/branch_leonox/src/libfreepv/XMLparser.cpp
===================================================================
--- freepv/branches/branch_leonox/src/libfreepv/XMLparser.cpp 2008-05-31 21:52:54 UTC (rev 144)
+++ freepv/branches/branch_leonox/src/libfreepv/XMLparser.cpp 2008-05-31 21:54:05 UTC (rev 145)
@@ -24,6 +24,7 @@
#include "XMLparser.h"
#include <iostream>
+#include <cstring>
using namespace FPV;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|