diff options
-rw-r--r-- | src/FbTk/Timer.cc | 14 | ||||
-rw-r--r-- | src/FbTk/Timer.hh | 1 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc index 44ea69a..7d7a84b 100644 --- a/src/FbTk/Timer.cc +++ b/src/FbTk/Timer.cc | |||
@@ -36,15 +36,21 @@ | |||
36 | #include "config.h" | 36 | #include "config.h" |
37 | #endif // HAVE_CONFIG_H | 37 | #endif // HAVE_CONFIG_H |
38 | 38 | ||
39 | #include <sys/time.h> | ||
40 | #include <sys/types.h> | ||
41 | #include <unistd.h> | ||
42 | #ifdef HAVE_CASSERT | 39 | #ifdef HAVE_CASSERT |
43 | #include <cassert> | 40 | #include <cassert> |
44 | #else | 41 | #else |
45 | #include <assert.h> | 42 | #include <assert.h> |
46 | #endif | 43 | #endif |
47 | 44 | ||
45 | // sys/select.h on solaris wants to use memset() | ||
46 | #ifdef HAVE_CSTRING | ||
47 | # include <cstring> | ||
48 | #else | ||
49 | # include <string.h> | ||
50 | #endif | ||
51 | |||
52 | #include <sys/select.h> | ||
53 | |||
48 | namespace FbTk { | 54 | namespace FbTk { |
49 | 55 | ||
50 | Timer::TimerList Timer::m_timerlist; | 56 | Timer::TimerList Timer::m_timerlist; |
@@ -90,7 +96,7 @@ void Timer::start() { | |||
90 | if ((! m_timing || m_interval != 0) && *m_handler) { | 96 | if ((! m_timing || m_interval != 0) && *m_handler) { |
91 | m_timing = true; | 97 | m_timing = true; |
92 | addTimer(this); //add us to the list | 98 | addTimer(this); //add us to the list |
93 | } | 99 | } |
94 | } | 100 | } |
95 | 101 | ||
96 | 102 | ||
diff --git a/src/FbTk/Timer.hh b/src/FbTk/Timer.hh index 4893fdb..6be269b 100644 --- a/src/FbTk/Timer.hh +++ b/src/FbTk/Timer.hh | |||
@@ -45,7 +45,6 @@ | |||
45 | #endif // HAVE_INTTYPES_H | 45 | #endif // HAVE_INTTYPES_H |
46 | 46 | ||
47 | #include <sys/types.h> | 47 | #include <sys/types.h> |
48 | #include <sys/select.h> | ||
49 | #include <sys/time.h> | 48 | #include <sys/time.h> |
50 | #include <unistd.h> | 49 | #include <unistd.h> |
51 | 50 | ||