diff options
author | markt <markt> | 2007-06-29 17:25:24 (GMT) |
---|---|---|
committer | markt <markt> | 2007-06-29 17:25:24 (GMT) |
commit | 329fca30fdbbc051a733c6d15efa6b95370ac221 (patch) | |
tree | 4090f3986160129efdb9f97a000efdbee44804bc /src/FbTk/FbString.cc | |
parent | 35251ef5c9bcf12abeee3e9b69a0ef85df3319dc (diff) | |
download | fluxbox-329fca30fdbbc051a733c6d15efa6b95370ac221.zip fluxbox-329fca30fdbbc051a733c6d15efa6b95370ac221.tar.bz2 |
updates for compiling with gcc 4.3
Diffstat (limited to 'src/FbTk/FbString.cc')
-rw-r--r-- | src/FbTk/FbString.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/FbTk/FbString.cc b/src/FbTk/FbString.cc index 6614ec4..7ee1b5f 100644 --- a/src/FbTk/FbString.cc +++ b/src/FbTk/FbString.cc | |||
@@ -27,6 +27,16 @@ | |||
27 | #else | 27 | #else |
28 | #include <errno.h> | 28 | #include <errno.h> |
29 | #endif | 29 | #endif |
30 | #ifdef HAVE_CSTRING | ||
31 | #include <cstring> | ||
32 | #else | ||
33 | #include <string.h> | ||
34 | #endif | ||
35 | #ifdef HAVE_CSTDLIB | ||
36 | #include <cstdlib> | ||
37 | #else | ||
38 | #include <stdlib.h> | ||
39 | #endif | ||
30 | 40 | ||
31 | #include "FbString.hh" | 41 | #include "FbString.hh" |
32 | #include "config.h" | 42 | #include "config.h" |