aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in7
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
26dnl Check for system header files 26dnl Check for system header files
27AC_HEADER_STDC 27AC_HEADER_STDC
28AC_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) 28AC_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
30AC_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
29AC_HEADER_TIME 36AC_HEADER_TIME
30 37
31dnl Check for existance of basename(), setlocale() and strftime() 38dnl Check for existance of basename(), setlocale() and strftime()