diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-06-11 08:27:04 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-06-11 08:27:04 +0200 |
commit | 976e44e324f254780ea9b09347ea0e970e40691c (patch) | |
tree | 84cdb8434984529cb5d2724af92ab328c4cbae93 /libgomp/configure.ac | |
parent | a1968bf9f3d483a353b49cb82511067110930b09 (diff) | |
download | gcc-976e44e324f254780ea9b09347ea0e970e40691c.zip gcc-976e44e324f254780ea9b09347ea0e970e40691c.tar.gz gcc-976e44e324f254780ea9b09347ea0e970e40691c.tar.bz2 |
re PR libgomp/36469 (bootstrap broken on HPUX PA)
PR libgomp/36469
* configure.ac: Add AC_CHECK_FUNCS (strtoull).
* configure: Regenerated.
* config.h.in: Regenerated.
* env.c (strtoull): Define to strtoul if HAVE_STRTOULL is not
defined.
From-SVN: r136650
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 12c9234..21aed2b 100644 --- a/libgomp/configure.ac +++ b/libgomp/configure.ac @@ -178,7 +178,7 @@ AC_LINK_IFELSE( [AC_MSG_ERROR([Pthreads are required to build libgomp])])]) # Check for functions needed. -AC_CHECK_FUNCS(getloadavg clock_gettime) +AC_CHECK_FUNCS(getloadavg clock_gettime strtoull) # Check for broken semaphore implementation on darwin. # sem_init returns: sem_init error: Function not implemented. |