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/ClockTool.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/ClockTool.cc')
-rw-r--r-- | src/ClockTool.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ClockTool.cc b/src/ClockTool.cc index 2364a5b..dbc128f 100644 --- a/src/ClockTool.cc +++ b/src/ClockTool.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: ClockTool.cc,v 1.13 2004/08/29 08:33:12 rathnor Exp $ | 23 | // $Id: ClockTool.cc,v 1.14 2004/08/31 15:26:38 rathnor Exp $ |
24 | 24 | ||
25 | #include "ClockTool.hh" | 25 | #include "ClockTool.hh" |
26 | 26 | ||
@@ -39,7 +39,11 @@ | |||
39 | #include "config.h" | 39 | #include "config.h" |
40 | #endif // HAVE_CONFIG_H | 40 | #endif // HAVE_CONFIG_H |
41 | 41 | ||
42 | #include <ctime> | 42 | #ifdef HAVE_CTIME |
43 | #include <ctime> | ||
44 | #else | ||
45 | #include <time.h> | ||
46 | #endif | ||
43 | #include <string> | 47 | #include <string> |
44 | #include <iostream> | 48 | #include <iostream> |
45 | using namespace std; | 49 | using namespace std; |