diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2009-10-01 06:41:04 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2009-10-01 06:41:04 (GMT) |
commit | 078438e9933720f2e1e0a4bf060eff1fe94a703f (patch) | |
tree | 0b3882e6ea5d17a8ed53a1e262910638414bd65b /src/WindowState.cc | |
parent | 6c0739e8895c9b909e4d925f57c130b4db3e842e (diff) | |
download | fluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.zip fluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.tar.bz2 |
compile fix: missing headers (sun compiler complained about)
Diffstat (limited to 'src/WindowState.cc')
-rw-r--r-- | src/WindowState.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/WindowState.cc b/src/WindowState.cc index 1b8647a..d062907 100644 --- a/src/WindowState.cc +++ b/src/WindowState.cc | |||
@@ -23,7 +23,16 @@ | |||
23 | 23 | ||
24 | #include "FbTk/StringUtil.hh" | 24 | #include "FbTk/StringUtil.hh" |
25 | 25 | ||
26 | #include <cstdlib> | 26 | #ifdef HAVE_CONFIG_H |
27 | #include "config.h" | ||
28 | #endif // HAVE_CONFIG_H | ||
29 | |||
30 | #ifdef HAVE_CSTDLIB | ||
31 | #include <cstdlib> | ||
32 | #else | ||
33 | #include <stdlib.h> | ||
34 | #endif | ||
35 | |||
27 | #include <errno.h> | 36 | #include <errno.h> |
28 | 37 | ||
29 | bool WindowState::useBorder() const { | 38 | bool WindowState::useBorder() const { |