diff options
author | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
commit | d17bf39a43a7581773c67d496e4022499d59cd26 (patch) | |
tree | 89e964e0e9a207d726e4ffefb88b19c51c591817 /src/FbTk/Timer.hh | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbTk/Timer.hh')
-rw-r--r-- | src/FbTk/Timer.hh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/FbTk/Timer.hh b/src/FbTk/Timer.hh index eb6f02a..b337b24 100644 --- a/src/FbTk/Timer.hh +++ b/src/FbTk/Timer.hh | |||
@@ -27,7 +27,11 @@ | |||
27 | 27 | ||
28 | #include "RefCount.hh" | 28 | #include "RefCount.hh" |
29 | 29 | ||
30 | #include <ctime> | 30 | #ifdef HAVE_CTIME |
31 | #include <ctime> | ||
32 | #else | ||
33 | #include <time.h> | ||
34 | #endif | ||
31 | #include <list> | 35 | #include <list> |
32 | 36 | ||
33 | #ifdef HAVE_CONFIG_H | 37 | #ifdef HAVE_CONFIG_H |