diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-22 20:53:36 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-22 20:53:36 +0000 |
commit | 3392253210b375a71af7dc832d2786a0a41f21d2 (patch) | |
tree | 53e17c2fe4cf83e296c689afa4ca907520223d09 /gcc/config.in | |
parent | 3cd0083c0d3cf6a9f89cc407c57ff1a0f836a62c (diff) | |
download | gcc-3392253210b375a71af7dc832d2786a0a41f21d2.tar.gz |
PR other/63694
* libiberty/configure.ac: Check for strtol, strtoul, strtoll and strtoull
declarations.
* libiberty/configure: Regenerated.
* gcc/configure.ac: Check for strtol, strtoul, strtoll and strtoull
declarations.
* gcc/configure: Regenerated.
* gcc/config.in: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217972 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 6cfda75b0b3..9cc0198c5c1 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -952,6 +952,34 @@ #endif +/* Define to 1 if we found a declaration for 'strtol', otherwise define to 0. + */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_STRTOL +#endif + + +/* Define to 1 if we found a declaration for 'strtoll', otherwise define to 0. + */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_STRTOLL +#endif + + +/* Define to 1 if we found a declaration for 'strtoul', otherwise define to 0. + */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_STRTOUL +#endif + + +/* Define to 1 if we found a declaration for 'strtoull', otherwise define to + 0. */ +#ifndef USED_FOR_TARGET +#undef HAVE_DECL_STRTOULL +#endif + + /* Define to 1 if we found a declaration for 'strverscmp', otherwise define to 0. */ #ifndef USED_FOR_TARGET |