diff options
author | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
commit | d17bf39a43a7581773c67d496e4022499d59cd26 (patch) | |
tree | 89e964e0e9a207d726e4ffefb88b19c51c591817 /src/ClientPattern.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/ClientPattern.cc')
-rw-r--r-- | src/ClientPattern.cc | 8 |
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> |