diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-23 06:24:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-23 06:24:09 +0000 |
commit | ec7a9b3e26a8682a560652c95ce614e515a797ab (patch) | |
tree | af35a633e99e0dd702b34863dc26fc61ecfe79c9 /autoconf | |
parent | dfa28ac56f8505978d348ddb73f52224869621d1 (diff) |
add checks for new functions. I'd appreciate it if someone could regen
the configure script :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 2573f7ee2d..c9741c53a2 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -523,9 +523,9 @@ dnl=== SECTION 8: Check for specific functions needed dnl=== dnl===-----------------------------------------------------------------------=== -AC_CHECK_FUNCS([backtrace ceil ceilf floor floorf getcwd getpagesize getrusage]) -AC_CHECK_FUNCS([gettimeofday isatty mkdtemp mkstemp mktemp ]) -AC_CHECK_FUNCS([realpath sbrk setrlimit strdup strerror strerror_r ]) +AC_CHECK_FUNCS([backtrace ceilf floorf roundf rintf nearbyintf getcwd ]) +AC_CHECK_FUNCS([getpagesize getrusage gettimeofday isatty mkdtemp mkstemp ]) +AC_CHECK_FUNCS([mktemp realpath sbrk setrlimit strdup strerror strerror_r ]) AC_CHECK_FUNCS([strtoll strtoq sysconf malloc_zone_statistics ]) AC_C_PRINTF_A AC_FUNC_ALLOCA |