diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-08-04 13:07:25 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-08-04 13:07:25 +0000 |
commit | 4e87a65138e8d65fd17d878bc94317239e59219f (patch) | |
tree | 3327e22384c56fa05e7e78b2928b47ea708ca202 /gcc | |
parent | b9445edd9a0bf06e1a06be55afb3b53f1bdeaa49 (diff) | |
download | gcc-4e87a65138e8d65fd17d878bc94317239e59219f.zip gcc-4e87a65138e8d65fd17d878bc94317239e59219f.tar.gz gcc-4e87a65138e8d65fd17d878bc94317239e59219f.tar.bz2 |
config.in: Remove HAVE_LSTAT.
* config.in: Remove HAVE_LSTAT.
* configure, configure.in: Don't test for lstat.
From-SVN: r70146
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.in | 3 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06492d6..dbb3890 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-08-04 Neil Booth <neil@daikokuya.co.uk> + + * config.in: Remove HAVE_LSTAT. + * configure, configure.in: Don't test for lstat. + 2003-08-03 Gabriel Dos Reis <gdr@integrable-solutions.net> * opts.c (decode_options): Do language-specific initialization for diff --git a/gcc/config.in b/gcc/config.in index e1feb70..8d63994 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -73,9 +73,6 @@ /* Define if you have the kill function. */ #undef HAVE_KILL -/* Define if you have the lstat function. */ -#undef HAVE_LSTAT - /* Define if you have the mbstowcs function. */ #undef HAVE_MBSTOWCS diff --git a/gcc/configure b/gcc/configure index de7b106..5d5ff95 100755 --- a/gcc/configure +++ b/gcc/configure @@ -3652,7 +3652,7 @@ fi for ac_func in times clock dup2 kill getrlimit setrlimit atoll atoq \ sysconf strsignal putc_unlocked fputc_unlocked fputs_unlocked \ - fwrite_unlocked fprintf_unlocked getrusage nl_langinfo lstat \ + fwrite_unlocked fprintf_unlocked getrusage nl_langinfo \ scandir alphasort gettimeofday mbstowcs wcswidth mmap mincore \ setlocale do diff --git a/gcc/configure.in b/gcc/configure.in index f7ffc2f..26933d3 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -791,7 +791,7 @@ dnl gcc_AC_C_ENUM_BF_UNSIGNED AC_CHECK_FUNCS(times clock dup2 kill getrlimit setrlimit atoll atoq \ sysconf strsignal putc_unlocked fputc_unlocked fputs_unlocked \ - fwrite_unlocked fprintf_unlocked getrusage nl_langinfo lstat \ + fwrite_unlocked fprintf_unlocked getrusage nl_langinfo \ scandir alphasort gettimeofday mbstowcs wcswidth mmap mincore \ setlocale) |