diff options
author | Alan Modra <amodra@gmail.com> | 2017-07-03 21:55:57 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-07-03 21:55:57 +0930 |
commit | 33c734b2f860f77badb1e25d16e144e9db77d1bf (patch) | |
tree | 63edf0b56ecff633fddc6e327a515b80783d99cb /bfd/config.in | |
parent | 8d219acda1f7bc5f7adcecf479c9017196cf2c70 (diff) | |
download | binutils-gdb-33c734b2f860f77badb1e25d16e144e9db77d1bf.tar.gz |
Missing config for bfd.c:_doprnt
This function uses HAVE_LONG_LONG and HAVE_LONG_DOUBLE
* configure.ac: Invoke AC_CHECK_TYPES for long long. Invoke
AC_TYPE_LONG_DOUBLE.
* configure: Regenerate.
* config.in: Regenerate.
Diffstat (limited to 'bfd/config.in')
-rw-r--r-- | bfd/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/config.in b/bfd/config.in index 2d5a381fb3e..75a5ff015ed 100644 --- a/bfd/config.in +++ b/bfd/config.in @@ -133,6 +133,12 @@ /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if the system has the type `long double'. */ +#undef HAVE_LONG_DOUBLE + +/* Define to 1 if the system has the type `long long'. */ +#undef HAVE_LONG_LONG + /* Define if <sys/procfs.h> has lwpstatus_t. */ #undef HAVE_LWPSTATUS_T |