diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2015-07-28 09:57:32 +0200 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2015-07-28 09:57:32 +0200 |
commit | d6f1bafa2c05241b89c0303a9f6a2af89f51c39c (patch) | |
tree | 03edb273e3c0f3a9a21a70204f9130b6199a0d2d /bfd/config.in | |
parent | 671c4e31fb12f1bee30d3bb5f8ad95f17d8d4663 (diff) | |
download | fsf-binutils-gdb-d6f1bafa2c05241b89c0303a9f6a2af89f51c39c.zip fsf-binutils-gdb-d6f1bafa2c05241b89c0303a9f6a2af89f51c39c.tar.gz fsf-binutils-gdb-d6f1bafa2c05241b89c0303a9f6a2af89f51c39c.tar.bz2 |
Check for asprintf and vasprintf during configure stage.
This should fix some build errors seen on AIX, MinGW, and possibly other
non-GNU systems too due to missing asprintf().
bfd/
* configure.in: Add asprintf and vasprintf to AC_CHECK_DECLS.
* config.in, configure: Regenerate.
Diffstat (limited to 'bfd/config.in')
-rw-r--r-- | bfd/config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bfd/config.in b/bfd/config.in index 1ee1081..58248bd 100644 --- a/bfd/config.in +++ b/bfd/config.in @@ -17,6 +17,10 @@ /* Define to 1 if you have the <alloca.h> header file. */ #undef HAVE_ALLOCA_H +/* Define to 1 if you have the declaration of `asprintf', and to 0 if you + don't. */ +#undef HAVE_DECL_ASPRINTF + /* Define to 1 if you have the declaration of `basename', and to 0 if you don't. */ #undef HAVE_DECL_BASENAME @@ -72,6 +76,10 @@ */ #undef HAVE_DECL_STRSTR +/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you + don't. */ +#undef HAVE_DECL_VASPRINTF + /* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you don't. */ #undef HAVE_DECL_VSNPRINTF |