Applied patch by Karsten Schwinne, adding a few header files necessary
authorFlorian Pose <fp@igh-essen.com>
Wed, 24 Sep 2008 10:28:59 +0000
changeset 1222 7348d6abb6cb
parent 1221 18c37827b40e
child 1223 6d539205114e
Applied patch by Karsten Schwinne, adding a few header files necessary
for gcc 4.3.1.
tool/CommandSlaves.cpp
tool/CommandStates.cpp
tool/CommandXml.cpp
tool/MasterDevice.cpp
tool/main.cpp
--- a/tool/CommandSlaves.cpp	Wed Sep 24 08:51:46 2008 +0000
+++ b/tool/CommandSlaves.cpp	Wed Sep 24 10:28:59 2008 +0000
@@ -7,6 +7,7 @@
 #include <iostream>
 #include <iomanip>
 #include <list>
+#include <string.h>
 using namespace std;
 
 #include "CommandSlaves.h"
--- a/tool/CommandStates.cpp	Wed Sep 24 08:51:46 2008 +0000
+++ b/tool/CommandStates.cpp	Wed Sep 24 10:28:59 2008 +0000
@@ -5,6 +5,7 @@
  ****************************************************************************/
 
 #include <iostream>
+#include <algorithm>
 using namespace std;
 
 #include "CommandStates.h"
--- a/tool/CommandXml.cpp	Wed Sep 24 08:51:46 2008 +0000
+++ b/tool/CommandXml.cpp	Wed Sep 24 10:28:59 2008 +0000
@@ -6,6 +6,7 @@
 
 #include <iostream>
 #include <iomanip>
+#include <string.h>
 using namespace std;
 
 #include "CommandXml.h"
--- a/tool/MasterDevice.cpp	Wed Sep 24 08:51:46 2008 +0000
+++ b/tool/MasterDevice.cpp	Wed Sep 24 10:28:59 2008 +0000
@@ -8,6 +8,7 @@
 #include <fcntl.h>
 #include <errno.h>
 #include <sys/ioctl.h>
+#include <string.h>
 
 #include <sstream>
 #include <iomanip>
--- a/tool/main.cpp	Wed Sep 24 08:51:46 2008 +0000
+++ b/tool/main.cpp	Wed Sep 24 10:28:59 2008 +0000
@@ -6,6 +6,7 @@
 
 #include <getopt.h>
 #include <libgen.h> // basename()
+#include <stdlib.h>
 
 #include <iostream>
 #include <iomanip>