summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPatrice Bensoussan <patrice.bensoussan@free.fr>2005-10-22 19:17:39 +0000
committerDiego Biurrun <diego@biurrun.de>2005-10-22 19:17:39 +0000
commit61c110fc3112b0277ca870f3d6fd5e8bf035da99 (patch)
tree8067a74a9bdd2cb9e3793833cc38c14520cfc0a8 /configure
parent3702300cbb027e413bfb0c1854c1e240ad810f34 (diff)
downloadffmpeg-streaming-61c110fc3112b0277ca870f3d6fd5e8bf035da99.zip
ffmpeg-streaming-61c110fc3112b0277ca870f3d6fd5e8bf035da99.tar.gz
Fix lrintf detection when extra libs are not installed in a standard location.
patch by Patrice Bensoussan patrice = dot = bensoussan = at = gmail = dot = com Originally committed as revision 4658 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6fd3ae8..c3cf948 100755
--- a/configure
+++ b/configure
@@ -985,7 +985,7 @@ int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
EOF
have_lrintf="no"
-if $cc $extralibs -o $TMPE $TMPC 2> /dev/null ; then
+if $cc $CFLAGS $LDFLAGS $extralibs -o $TMPE $TMPC 2> /dev/null ; then
have_lrintf="yes"
# allanc@chickenandporn.com: cannot execute cross-compiled
# code on the host. Only execute if not cross-compiling.
OpenPOWER on IntegriCloud