aboutsummaryrefslogtreecommitdiff
path: root/src/ClientPattern.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-31 15:26:40 (GMT)
committerrathnor <rathnor>2004-08-31 15:26:40 (GMT)
commitd17bf39a43a7581773c67d496e4022499d59cd26 (patch)
tree89e964e0e9a207d726e4ffefb88b19c51c591817 /src/ClientPattern.cc
parent6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff)
downloadfluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip
fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2
add autoconf check for std c++ headers
Diffstat (limited to 'src/ClientPattern.cc')
-rw-r--r--src/ClientPattern.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ClientPattern.cc b/src/ClientPattern.cc
index 2fba185..c175c64 100644
--- a/src/ClientPattern.cc
+++ b/src/ClientPattern.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: ClientPattern.cc,v 1.7 2004/04/28 13:04:06 rathnor Exp $ 23// $Id: ClientPattern.cc,v 1.8 2004/08/31 15:26:38 rathnor Exp $
24 24
25#include "ClientPattern.hh" 25#include "ClientPattern.hh"
26#include "RegExp.hh" 26#include "RegExp.hh"
@@ -38,7 +38,11 @@
38#include <fstream> 38#include <fstream>
39#include <string> 39#include <string>
40#include <memory> 40#include <memory>
41#include <cstdio> 41#ifdef HAVE_CSTDIO
42 #include <cstdio>
43#else
44 #include <stdio.h>
45#endif
42 46
43// needed as well for index on some systems (e.g. solaris) 47// needed as well for index on some systems (e.g. solaris)
44#include <strings.h> 48#include <strings.h>