diff options
author | Steve Ellcey <sje@cup.hp.com> | 2006-01-21 17:57:01 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2006-01-21 17:57:01 +0000 |
commit | a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9 (patch) | |
tree | 16ba62c14bd05fa0e4fd37e596e2a99d95e7f40b /libgomp/configure.ac | |
parent | 30cb87a09beeca0cbdee7347c2d993d1b90446d2 (diff) | |
download | gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.zip gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.tar.gz gcc-a55b8e1826cd3c5e399fdcb4802f1603e49f8ba9.tar.bz2 |
re PR libgomp/25877 (team.c:269: warning: implicit declaration of function 'alloca')
PR libgomp/25877
* configure.ac: Remove check for alloca.h.
* configure: Regenerate.
* config.h.in: Regenerate.
* libgomp.h: define gomp_alloca to be __builtin_alloca.
* team.c: Remove use of alloca.h.
Call gomp_alloca instead of alloca.
From-SVN: r110068
Diffstat (limited to 'libgomp/configure.ac')
-rw-r--r-- | libgomp/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/configure.ac b/libgomp/configure.ac index 90e115b..854514a 100644 --- a/libgomp/configure.ac +++ b/libgomp/configure.ac @@ -136,7 +136,7 @@ AC_SUBST(libtool_VERSION) # Check header files. AC_STDC_HEADERS AC_HEADER_TIME -AC_CHECK_HEADERS(alloca.h unistd.h semaphore.h sys/time.h) +AC_CHECK_HEADERS(unistd.h semaphore.h sys/time.h) AC_CHECK_HEADER([pthread.h],[], [AC_MSG_ERROR([Pthreads are required to build libgomp])]) |