summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2006-03-24 01:17:22 +0000
committerDiego Biurrun <diego@biurrun.de>2006-03-24 01:17:22 +0000
commit96277634831fccd2041a75d82038ead0900a4900 (patch)
tree8182906842cd08de6fb63364d3d9cfeac0ba104b /configure
parente77ef2755a98c70e5841e192cef69ad3079789de (diff)
Fix order of operands in lrintf test to make the test not fail if you have
a strict compile/linker that accepts arguments just in the canonical order. patch by Diego Pettenò, flameeyes.. at ..gentoo.. dot ..org Originally committed as revision 5205 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 c2009d45a9..7991f1ad17 100755
--- a/configure
+++ b/configure
@@ -1073,7 +1073,7 @@ int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
EOF
have_lrintf="no"
-if $cc $CFLAGS $LDFLAGS $extralibs -o $TMPE $TMPC 2> /dev/null ; then
+if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC $extralibs 2> /dev/null ; then
have_lrintf="yes"
# allanc@chickenandporn.com: cannot execute cross-compiled
# code on the host. Only execute if not cross-compiling.