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/Ewmh.cc | |
parent | 6c0739e8895c9b909e4d925f57c130b4db3e842e (diff) | |
download | fluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.zip fluxbox-078438e9933720f2e1e0a4bf060eff1fe94a703f.tar.bz2 |
compile fix: missing headers (sun compiler complained about)
Diffstat (limited to 'src/Ewmh.cc')
-rw-r--r-- | src/Ewmh.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc index 4062595..fb1b832 100644 --- a/src/Ewmh.cc +++ b/src/Ewmh.cc | |||
@@ -39,15 +39,24 @@ | |||
39 | 39 | ||
40 | #include <X11/Xproto.h> | 40 | #include <X11/Xproto.h> |
41 | #include <X11/Xatom.h> | 41 | #include <X11/Xatom.h> |
42 | |||
42 | #include <iostream> | 43 | #include <iostream> |
43 | #include <algorithm> | 44 | #include <algorithm> |
44 | #include <new> | 45 | #include <new> |
46 | |||
45 | #ifdef HAVE_CSTRING | 47 | #ifdef HAVE_CSTRING |
46 | #include <cstring> | 48 | #include <cstring> |
47 | #else | 49 | #else |
48 | #include <string.h> | 50 | #include <string.h> |
49 | #endif | 51 | #endif |
50 | 52 | ||
53 | #ifdef HAVE_CSTDLIB | ||
54 | #include <cstdlib> | ||
55 | #else | ||
56 | #include <stdlib.h> | ||
57 | #endif | ||
58 | |||
59 | |||
51 | using std::cerr; | 60 | using std::cerr; |
52 | using std::endl; | 61 | using std::endl; |
53 | using std::vector; | 62 | using std::vector; |