Fixed lrintf check when lrintf is in libm

This commit is contained in:
Eric Petit 2006-04-05 10:12:23 +00:00
parent 759a1cf6e1
commit 94fd8c9cf6
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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