diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2006-03-24 01:17:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-03-24 01:17:22 +0000 |
commit | 96277634831fccd2041a75d82038ead0900a4900 (patch) | |
tree | 8182906842cd08de6fb63364d3d9cfeac0ba104b | |
parent | e77ef2755a98c70e5841e192cef69ad3079789de (diff) | |
download | ffmpeg-96277634831fccd2041a75d82038ead0900a4900.tar.gz |
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
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |