mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Move the atoll check from AC_CHECK_FUNCS to gcc_AC_CHECK_DECLS.
2015-05-28 Andreas Tobler <andreast@gcc.gnu.org>
* configure.ac: Move the atoll check from AC_CHECK_FUNCS to
gcc_AC_CHECK_DECLS.
* configure: Regenerate.
From-SVN: r223847
This commit is contained in:
parent
cfa8681a56
commit
384d8786cd
|
|
@ -1,3 +1,9 @@
|
||||||
|
2015-05-28 Andreas Tobler <andreast@gcc.gnu.org>
|
||||||
|
|
||||||
|
* configure.ac: Move the atoll check from AC_CHECK_FUNCS to
|
||||||
|
gcc_AC_CHECK_DECLS.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2015-05-28 Mike Frysinger <vapier@gentoo.org>
|
2015-05-28 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config/nios2/linux.h (CPP_SPEC): Define.
|
* config/nios2/linux.h (CPP_SPEC): Define.
|
||||||
|
|
|
||||||
|
|
@ -9574,7 +9574,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_func in times clock kill getrlimit setrlimit atoll atoq \
|
for ac_func in times clock kill getrlimit setrlimit atoq \
|
||||||
popen sysconf strsignal getrusage nl_langinfo \
|
popen sysconf strsignal getrusage nl_langinfo \
|
||||||
gettimeofday mbstowcs wcswidth mmap setlocale \
|
gettimeofday mbstowcs wcswidth mmap setlocale \
|
||||||
clearerr_unlocked feof_unlocked ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked putchar_unlocked putc_unlocked madvise
|
clearerr_unlocked feof_unlocked ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked putchar_unlocked putc_unlocked madvise
|
||||||
|
|
@ -10837,7 +10837,7 @@ cat >>confdefs.h <<_ACEOF
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
for ac_func in getenv atol asprintf sbrk abort atof getcwd getwd \
|
for ac_func in getenv atol atoll asprintf sbrk abort atof getcwd getwd \
|
||||||
madvise stpcpy strnlen strsignal strverscmp \
|
madvise stpcpy strnlen strsignal strverscmp \
|
||||||
strtol strtoul strtoll strtoull \
|
strtol strtoul strtoll strtoull \
|
||||||
errno snprintf vsnprintf vasprintf malloc realloc calloc \
|
errno snprintf vsnprintf vasprintf malloc realloc calloc \
|
||||||
|
|
|
||||||
|
|
@ -1149,7 +1149,7 @@ define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
|
||||||
fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
|
fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
|
||||||
fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
|
fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
|
||||||
putchar_unlocked putc_unlocked)
|
putchar_unlocked putc_unlocked)
|
||||||
AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoll atoq \
|
AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoq \
|
||||||
popen sysconf strsignal getrusage nl_langinfo \
|
popen sysconf strsignal getrusage nl_langinfo \
|
||||||
gettimeofday mbstowcs wcswidth mmap setlocale \
|
gettimeofday mbstowcs wcswidth mmap setlocale \
|
||||||
gcc_UNLOCKED_FUNCS madvise)
|
gcc_UNLOCKED_FUNCS madvise)
|
||||||
|
|
@ -1213,7 +1213,7 @@ AC_CHECK_DECLS([basename(const char*), strstr(const char*,const char*)], , ,[
|
||||||
#include "ansidecl.h"
|
#include "ansidecl.h"
|
||||||
#include "system.h"])
|
#include "system.h"])
|
||||||
|
|
||||||
gcc_AC_CHECK_DECLS(getenv atol asprintf sbrk abort atof getcwd getwd \
|
gcc_AC_CHECK_DECLS(getenv atol atoll asprintf sbrk abort atof getcwd getwd \
|
||||||
madvise stpcpy strnlen strsignal strverscmp \
|
madvise stpcpy strnlen strsignal strverscmp \
|
||||||
strtol strtoul strtoll strtoull \
|
strtol strtoul strtoll strtoull \
|
||||||
errno snprintf vsnprintf vasprintf malloc realloc calloc \
|
errno snprintf vsnprintf vasprintf malloc realloc calloc \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue