diff options
author | fluxgen <fluxgen> | 2003-11-17 00:17:04 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-11-17 00:17:04 (GMT) |
commit | 3eb9b1b912b6d1db160170075cf51597e64fd57a (patch) | |
tree | e87f07165d41d08cc6bd0afbb837ef9f8375d062 /configure.in | |
parent | c26bfcde9cc0d7c192998154767294fb9e1dc6c3 (diff) | |
download | fluxbox-3eb9b1b912b6d1db160170075cf51597e64fd57a.zip fluxbox-3eb9b1b912b6d1db160170075cf51597e64fd57a.tar.bz2 |
fixed check for sstream and strstream
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7af2c13..ac1b971 100644 --- a/configure.in +++ b/configure.in | |||
@@ -26,6 +26,13 @@ fi | |||
26 | dnl Check for system header files | 26 | dnl Check for system header files |
27 | AC_HEADER_STDC | 27 | AC_HEADER_STDC |
28 | AC_CHECK_HEADERS(errno.h ctype.h dirent.h fcntl.h libgen.h locale.h nl_types.h process.h signal.h stdarg.h stdio.h time.h unistd.h sys/param.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h) | 28 | AC_CHECK_HEADERS(errno.h ctype.h dirent.h fcntl.h libgen.h locale.h nl_types.h process.h signal.h stdarg.h stdio.h time.h unistd.h sys/param.h sys/select.h sys/signal.h sys/stat.h sys/time.h sys/types.h sys/wait.h) |
29 | |||
30 | AC_CHECK_HEADERS(sstream, , | ||
31 | [ AC_CHECK_HEADERS(strstream,, | ||
32 | [AC_MSG_ERROR([Your libstdc++ doesn't have the sstream or strstream classes])] | ||
33 | )] | ||
34 | ) | ||
35 | |||
29 | AC_HEADER_TIME | 36 | AC_HEADER_TIME |
30 | 37 | ||
31 | dnl Check for existance of basename(), setlocale() and strftime() | 38 | dnl Check for existance of basename(), setlocale() and strftime() |