diff options
author | Ozkan Sezer <sezeroz@gmail.com> | 2009-04-13 10:37:17 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2009-04-13 12:37:17 +0200 |
commit | 266aa80543a9dbf9bc53d8d7123f847124740b73 (patch) | |
tree | 335455541813df2f5b8923adfb23ab8d29c6d755 /libssp/configure.ac | |
parent | 59a1171ffc690c8f57c1b43479b84fd888e7591f (diff) | |
download | gcc-266aa80543a9dbf9bc53d8d7123f847124740b73.tar.gz |
re PR other/39062 (libssp/ssp.c needs malloc.h for mingw)
2009-04-13 Ozkan Sezer <sezeroz@gmail.com>
PR target/39062
* ssp.c: Also include malloc.h for alloca(). MinGW needs it.
* configure.ac: Also check for malloc.h.
* configure: Regenerated.
* config.h.in: Regenerated.
From-SVN: r146000
Diffstat (limited to 'libssp/configure.ac')
-rw-r--r-- | libssp/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssp/configure.ac b/libssp/configure.ac index 99b4edfe104..f3a66ec975a 100644 --- a/libssp/configure.ac +++ b/libssp/configure.ac @@ -90,7 +90,7 @@ LDFLAGS="$save_LDFLAGS" AC_MSG_RESULT($ssp_use_symver) AM_CONDITIONAL(LIBSSP_USE_SYMVER, [test "x$ssp_use_symver" = xyes]) -AC_CHECK_HEADERS(alloca.h paths.h syslog.h string.h unistd.h fcntl.h stdio.h limits.h) +AC_CHECK_HEADERS(alloca.h malloc.h paths.h syslog.h string.h unistd.h fcntl.h stdio.h limits.h) if test x$gcc_no_link = xyes; then # Presume the ISO C functions are available; add target-specific |