summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure b/configure
index d1fd9dedad..c115175070 100755
--- a/configure
+++ b/configure
@@ -1575,6 +1575,21 @@ fi
echores "$_posix4"
+echocheck "lrintf"
+cat > $TMPC << EOF
+#include <math.h>
+int main(void) { (void) lrintf(0.0); return 0; }
+EOF
+_lrintf=no
+cc_check -lm && _lrintf=yes
+if test "$_lrintf" = yes ; then
+ _def_lrintf="#define HAVE_LRINTF 1"
+else
+ _def_lrintf="#undef HAVE_LRINTF"
+fi
+echores "$_lrintf"
+
+
echocheck "nanosleep"
# also check for nanosleep
cat > $TMPC << EOF
@@ -4863,6 +4878,9 @@ $_def_vcd
**
*---------------------------------------------------------------------------*/
+/* C99 lrintf function available */
+$_def_lrintf
+
/* nanosleep support */
$_def_nanosleep