Commit 0ceb79cfdd15e0d456b400be20baa4ea4fc70ae3

Authored by Jay Berkenbilt
1 parent a981741b

missing strlen.h causes problems with gcc 4.3

git-svn-id: svn+q:///qpdf/trunk@606 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing 2 changed files with 5 additions and 1 deletions
ChangeLog
  1 +2008-05-03 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * libqpdf/PCRE.cc: added missing include of <string.h>
  4 +
1 5 2008-04-26 Jay Berkenbilt <ejb@ql.org>
2 6  
3 7 * 2.0: initial public release
... ...
libqpdf/PCRE.cc
1 1  
2   -
3 2 #include <qpdf/PCRE.hh>
4 3 #include <qpdf/QUtil.hh>
5 4  
6 5 #include <iostream>
  6 +#include <strlen.h>
7 7  
8 8 PCRE::Exception::Exception(std::string const& message)
9 9 {
... ...