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
This commit is contained in:
Jakub Jelinek 2008-06-11 08:27:04 +02:00 committed by Jakub Jelinek
parent a1968bf9f3
commit 976e44e324
5 changed files with 18 additions and 2 deletions

View file

@ -47,6 +47,9 @@
#include <limits.h>
#include <errno.h>
#ifndef HAVE_STRTOULL
# define strtoull(ptr, eptr, base) strtoul (ptr, eptr, base)
#endif
struct gomp_task_icv gomp_global_icv = {
.nthreads_var = 1,