summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2002-11-30 23:09:21 +0100
committerKevin Ryde <user42@zip.com.au>2002-11-30 23:09:21 +0100
commit4cecb3ca8da04253ad7b56eef8db92c842ff7bcc (patch)
tree9ecde92b33bc2ed966f6f2cff019339fa95b5d19
parentf267dc9a2661425eabd0b76ef227cd13943624e4 (diff)
downloadgmp-4cecb3ca8da04253ad7b56eef8db92c842ff7bcc.tar.gz
* configure.in (AC_CHECK_HEADERS) [C++]: Add <sstream>.
-rw-r--r--configure.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 939eb7491..6dc648914 100644
--- a/configure.in
+++ b/configure.in
@@ -1969,7 +1969,14 @@ GMP_FUNC_SSCANF_WRITABLE_INPUT
#
if test $enable_cxx = yes; then
AC_LANG_PUSH(C++)
+
+ # Reasons for testing:
+ # <sstream> - not in g++ 2.95.2
+ # std::locale - not in g++ 2.95.4
+ #
+ AC_CHECK_HEADERS([sstream])
AC_CHECK_TYPES([std::locale],,,[#include <locale>])
+
AC_LANG_POP(C++)
fi