From 94fd8c9cf62d1e53ffa0685b013e66b4ce229d75 Mon Sep 17 00:00:00 2001 From: Eric Petit Date: Wed, 5 Apr 2006 10:12:23 +0000 Subject: [PATCH] Fixed lrintf check when lrintf is in libm --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 2ece9e791..cbac89b61 100755 --- a/configure +++ b/configure @@ -102,7 +102,7 @@ lrintf_test() return ( lrintf( 3.14 ) != 3 ); } EOF - if ( $CC -o testconf testconf.c $LINKLIBS && ./testconf ) > /dev/null 2>&1 + if ( $CC -o testconf testconf.c $LDFLAGS && ./testconf ) > /dev/null 2>&1 then CFLAGS="$CFLAGS -DHAVE_LRINTF" fi