diff options
author | markt <markt> | 2006-06-25 19:04:46 (GMT) |
---|---|---|
committer | markt <markt> | 2006-06-25 19:04:46 (GMT) |
commit | b699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c (patch) | |
tree | 40012ff6cd6458fb39f6a3a2055df283f3a6b5b1 /src/FbTk/FbString.hh | |
parent | bf9b60833f87a8b328d71dac5879bdf7a0300d6e (diff) | |
download | fluxbox_paul-b699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c.zip fluxbox_paul-b699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c.tar.bz2 |
Fix compile error with some compilers not including iconv.h before FbString.hh
Diffstat (limited to 'src/FbTk/FbString.hh')
-rw-r--r-- | src/FbTk/FbString.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/FbTk/FbString.hh b/src/FbTk/FbString.hh index cfa44d9..502290b 100644 --- a/src/FbTk/FbString.hh +++ b/src/FbTk/FbString.hh | |||
@@ -27,6 +27,11 @@ | |||
27 | 27 | ||
28 | #include <string> | 28 | #include <string> |
29 | 29 | ||
30 | #include "config.h" | ||
31 | #ifdef HAVE_ICONV | ||
32 | #include <iconv.h> | ||
33 | #endif // HAVE_ICONV | ||
34 | |||
30 | namespace FbTk { | 35 | namespace FbTk { |
31 | 36 | ||
32 | // Use this type for things converted to our internal encoding (UTF-8) | 37 | // Use this type for things converted to our internal encoding (UTF-8) |