For PR696:
authorReid Spencer <rspencer@reidspencer.com>
Thu, 19 Jan 2006 08:22:40 +0000 (08:22 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 19 Jan 2006 08:22:40 +0000 (08:22 +0000)
Add checks for ceil, ceilf, floor, and floorf

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25453 91177308-0d34-0410-b5e6-96231b3b80d8

autoconf/configure.ac
configure
include/llvm/Config/config.h.in

index 09f45e86bf6972571817f29c1610dcbc23afe751..1ccef0ad97b543d37ba079c1c5684284bdeee1d3 100644 (file)
@@ -523,8 +523,8 @@ dnl=== SECTION 8: Check for specific functions needed
 dnl===
 dnl===-----------------------------------------------------------------------===
 
-AC_CHECK_FUNCS([backtrace getcwd getpagesize getrusage gettimeofday ])
-AC_CHECK_FUNCS([isatty mkdtemp mkstemp mktemp ])
+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([strtoll strtoq sysconf malloc_zone_statistics ])
 AC_C_PRINTF_A
index fe357b266473a9a680b22becf536ede3011b8a73..9daf472f1b87dafc5f71e7f499afa958243749a5 100755 (executable)
--- a/configure
+++ b/configure
 
 
 
-for ac_func in backtrace getcwd getpagesize getrusage gettimeofday
+
+
+
+for ac_func in backtrace ceil ceilf floor floorf getcwd getpagesize getrusage
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -27857,7 +27860,8 @@ done
 
 
 
-for ac_func in isatty mkdtemp mkstemp mktemp
+
+for ac_func in gettimeofday isatty mkdtemp mkstemp mktemp
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 echo "$as_me:$LINENO: checking for $ac_func" >&5
index 0a9bffa18b016a8e2f8beaa323b3f56380f5b4c5..2166163f488ef6f06ad76f535901b0da60a832ae 100644 (file)
 /* Does not have bi-directional iterator */
 #undef HAVE_BI_ITERATOR
 
+/* Define to 1 if you have the `ceil' function. */
+#undef HAVE_CEIL
+
+/* Define to 1 if you have the `ceilf' function. */
+#undef HAVE_CEILF
+
 /* Define to 1 if you have the `closedir' function. */
 #undef HAVE_CLOSEDIR
 
 /* Set to 1 if the finite function is found in <ieeefp.h> */
 #undef HAVE_FINITE_IN_IEEEFP_H
 
+/* Define to 1 if you have the `floor' function. */
+#undef HAVE_FLOOR
+
+/* Define to 1 if you have the `floorf' function. */
+#undef HAVE_FLOORF
+
 /* Does not have forward iterator */
 #undef HAVE_FWD_ITERATOR