From 352932de42fcf3e39e26d201b557c622b9a2615f Mon Sep 17 00:00:00 2001
From: diego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Date: Fri, 24 Mar 2006 01:17:22 +0000
Subject: [PATCH] =?UTF-8?q?Fix=20order=20of=20operands=20in=20lrintf=20tes?=
 =?UTF-8?q?t=20to=20make=20the=20test=20not=20fail=20if=20you=20have=20a?=
 =?UTF-8?q?=20strict=20compile/linker=20that=20accepts=20arguments=20just?=
 =?UTF-8?q?=20in=20the=20canonical=20order.=20patch=20by=20Diego=20Petten?=
 =?UTF-8?q?=C3=B2,=20flameeyes..=20at=20..gentoo..=20dot=20..org?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5205 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index c2009d45a..7991f1ad1 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.
-- 
2.25.4