diff options
author | fche <fche> | 2007-04-04 18:41:27 +0000 |
---|---|---|
committer | fche <fche> | 2007-04-04 18:41:27 +0000 |
commit | 3b5793932ec33f897433bc513b49f35bd8b35b2f (patch) | |
tree | 8417d5ced22fc46117175ca4be6c0e8dcee9b566 | |
parent | cd7116b8cb3e77cf49cd30cb244f25d7c958e5f6 (diff) | |
download | systemtap-steved-3b5793932ec33f897433bc513b49f35bd8b35b2f.tar.gz systemtap-steved-3b5793932ec33f897433bc513b49f35bd8b35b2f.tar.xz systemtap-steved-3b5793932ec33f897433bc513b49f35bd8b35b2f.zip |
2007-04-04 Frank Ch. Eigler <fche@elastic.org>
GCC 4.3 compatibility patches from Debian.
* buildrun.cxx, hash.cxx, tapsets.cxx, translate.cxx: #include a few
more C++ headers.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | buildrun.cxx | 1 | ||||
-rw-r--r-- | hash.cxx | 2 | ||||
-rw-r--r-- | tapsets.cxx | 2 | ||||
-rw-r--r-- | translate.cxx | 1 |
5 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2007-04-04 Frank Ch. Eigler <fche@elastic.org> + + GCC 4.3 compatibility patches from Debian. + * buildrun.cxx, hash.cxx, tapsets.cxx, translate.cxx: #include a few + more C++ headers. + 2007-04-03 Frank Ch. Eigler <fche@elastic.org> Improve error messages for underprivileged scripts. diff --git a/buildrun.cxx b/buildrun.cxx index 8bd4cc3e..2540c128 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -11,6 +11,7 @@ #include "session.h" #include "util.h" +#include <cstdlib> #include <fstream> #include <sstream> @@ -19,6 +19,8 @@ #include "session.h" #include "hash.h" #include "util.h" + +#include <cstdlib> #include <sstream> #include <iomanip> #include <cerrno> diff --git a/tapsets.cxx b/tapsets.cxx index 8eeab131..bbbcffb3 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -15,6 +15,8 @@ #include "session.h" #include "util.h" +#include <cstdlib> +#include <algorithm> #include <deque> #include <iostream> #include <map> diff --git a/translate.cxx b/translate.cxx index 6dc72fef..0d254224 100644 --- a/translate.cxx +++ b/translate.cxx @@ -15,6 +15,7 @@ #include "tapsets.h" #include "util.h" +#include <cstdlib> #include <iostream> #include <set> #include <sstream> |