aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2008-05-04 04:09:53 +0200
committerJay Berkenbilt <ejb@ql.org>2008-05-04 04:09:53 +0200
commit0ceb79cfdd15e0d456b400be20baa4ea4fc70ae3 (patch)
treec72325ea23425fc7b650913b5c0db44b1685dc40
parenta981741baf3eca9cd7aec0b7b746cc838a1c2bab (diff)
downloadqpdf-0ceb79cfdd15e0d456b400be20baa4ea4fc70ae3.tar.zst
missing strlen.h causes problems with gcc 4.3
git-svn-id: svn+q:///qpdf/trunk@606 71b93d88-0707-0410-a8cf-f5a4172ac649
-rw-r--r--ChangeLog4
-rw-r--r--libqpdf/PCRE.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e527002..21de3797 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-03 Jay Berkenbilt <ejb@ql.org>
+
+ * libqpdf/PCRE.cc: added missing include of <string.h>
+
2008-04-26 Jay Berkenbilt <ejb@ql.org>
* 2.0: initial public release
diff --git a/libqpdf/PCRE.cc b/libqpdf/PCRE.cc
index afa6e954..d8e38a25 100644
--- a/libqpdf/PCRE.cc
+++ b/libqpdf/PCRE.cc
@@ -1,9 +1,9 @@
-
#include <qpdf/PCRE.hh>
#include <qpdf/QUtil.hh>
#include <iostream>
+#include <strlen.h>
PCRE::Exception::Exception(std::string const& message)
{