summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--cache.cxx1
-rw-r--r--parse.cxx1
3 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 93ecc148..5688d15e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-05-31 Frank Ch. Eigler <fche@elastic.org>
+
+ PR 3579
+ From Eugeniy Meshcheryakov <eugen@debian.org>
+ * cache.cxx, parse.cxx: Add #include <cstring> for gcc 4.3.
+
2007-05-30 Frank Ch. Eigler <fche@redhat.com>
PR 4567.
diff --git a/cache.cxx b/cache.cxx
index b17c7af6..90d58356 100644
--- a/cache.cxx
+++ b/cache.cxx
@@ -13,6 +13,7 @@
#include <cerrno>
#include <string>
#include <fstream>
+#include <cstring>
extern "C" {
#include <sys/types.h>
diff --git a/parse.cxx b/parse.cxx
index 9132d0b5..de6d1385 100644
--- a/parse.cxx
+++ b/parse.cxx
@@ -20,6 +20,7 @@
#include <cerrno>
#include <climits>
#include <sstream>
+#include <cstring>
using namespace std;