diff options
author | Andreas Tobler <andreast@gcc.gnu.org> | 2015-06-01 21:46:17 +0200 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2015-06-01 21:46:17 +0200 |
commit | 418dd5cefef6cd8d80de3997a0590503d653bc04 (patch) | |
tree | 31377df64f2e206b9e350605e94dd603a6bcf1df /gcc/config.in | |
parent | c134cf2ab8e329fecda56f61cd977388a200a3d5 (diff) | |
download | gcc-418dd5cefef6cd8d80de3997a0590503d653bc04.zip gcc-418dd5cefef6cd8d80de3997a0590503d653bc04.tar.gz gcc-418dd5cefef6cd8d80de3997a0590503d653bc04.tar.bz2 |
read-rtl.c: Adapt to use HAVE_DECL_ATOLL instead of HAVE_ATOLL.
2015-06-01 Andreas Tobler <andreast@gcc.gnu.org>
* read-rtl.c: Adapt to use HAVE_DECL_ATOLL instead of HAVE_ATOLL.
* config.in: Regenerate.
From-SVN: r223996
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gcc/config.in b/gcc/config.in index daaf906..3aee936 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -624,12 +624,6 @@ #endif -/* Define to 1 if you have the `atoll' function. */ -#ifndef USED_FOR_TARGET -#undef HAVE_ATOLL -#endif - - /* Define to 1 if you have the `atoq' function. */ #ifndef USED_FOR_TARGET #undef HAVE_ATOQ @@ -686,8 +680,15 @@ #endif -/* Define to 1 if we found a declaration for 'basename', otherwise define to - 0. */ +/* Define to 1 if we found a declaration for 'atoll', otherwise define to 0. + */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_ATOLL +#endif + + +/* Define to 1 if you have the declaration of `basename(const char*)', and to + 0 if you don't. */ #ifndef USED_FOR_TARGET #undef HAVE_DECL_BASENAME #endif @@ -963,8 +964,8 @@ #endif -/* Define to 1 if we found a declaration for 'strstr', otherwise define to 0. - */ +/* Define to 1 if you have the declaration of `strstr(const char*,const + char*)', and to 0 if you don't. */ #ifndef USED_FOR_TARGET #undef HAVE_DECL_STRSTR #endif |