diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2007-12-14 22:21:39 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2007-12-14 22:21:39 (GMT) |
commit | 90f4f1ecc1635fd5d144f86d64b1674958d0a59f (patch) | |
tree | aa07b88aac7b694e7fd5ded55a89a93ab8837c50 /src/main.cc | |
parent | d90befb43007274c03fb1783b3236072120e78e1 (diff) | |
download | fluxbox-90f4f1ecc1635fd5d144f86d64b1674958d0a59f.zip fluxbox-90f4f1ecc1635fd5d144f86d64b1674958d0a59f.tar.bz2 |
fix compile issue with gcc 4.3
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cc b/src/main.cc index e4e16ac..ab18f6c 100644 --- a/src/main.cc +++ b/src/main.cc | |||
@@ -45,6 +45,12 @@ | |||
45 | #include <stdlib.h> | 45 | #include <stdlib.h> |
46 | #endif | 46 | #endif |
47 | 47 | ||
48 | #ifdef HAVE_CSTRING | ||
49 | #include <cstring> | ||
50 | #else | ||
51 | #include <string.h> | ||
52 | #endif | ||
53 | |||
48 | #include <iostream> | 54 | #include <iostream> |
49 | #include <fstream> | 55 | #include <fstream> |
50 | #include <stdexcept> | 56 | #include <stdexcept> |