diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-27 23:11:52 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-27 23:11:52 +0000 |
commit | 14636c22eee7fd5d4d11fb0d240bab51edeb243f (patch) | |
tree | 20e394e3a9f58d8c0244048b7993fe7d2e11f434 /libstdc++-v3/aclocal.m4 | |
parent | 575cce5ce850dea99483770b3ca37cd1d2fe6276 (diff) | |
download | gcc-14636c22eee7fd5d4d11fb0d240bab51edeb243f.tar.gz |
2003-10-27 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/12778
* acinclude.m4 (GLIBCXX_CHECK_LFS): Use the C++ compiler.
* aclocal.m4: Regenerate.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/aclocal.m4')
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index f55cbf46802..ea472fd1506 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.7.7 -*- Autoconf -*- +# generated automatically by aclocal 1.7.8 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. @@ -606,9 +606,13 @@ dnl dnl Check whether LFS support is available. dnl AC_DEFUN(GLIBCXX_CHECK_LFS, [ + AC_LANG_SAVE + AC_LANG_CPLUSPLUS AC_CACHE_VAL(glibcxx_cv_LFS, [ AC_TRY_LINK( - [#include <unistd.h>], + [#include <unistd.h> + #include <stdio.h> + ], [fopen64("t", "w"); lseek64(1, 0, SEEK_CUR);], [glibcxx_cv_LFS=yes], @@ -617,6 +621,7 @@ AC_DEFUN(GLIBCXX_CHECK_LFS, [ if test $glibcxx_cv_LFS = yes; then AC_DEFINE(_GLIBCXX_USE_LFS) fi + AC_LANG_RESTORE ]) @@ -2004,7 +2009,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"]) # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], - [AM_AUTOMAKE_VERSION([1.7.7])]) + [AM_AUTOMAKE_VERSION([1.7.8])]) # Helper functions for option handling. -*- Autoconf -*- |