You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
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
This commit is contained in:
committed by
Diego Biurrun
parent
e77ef2755a
commit
9627763483
2
configure
vendored
2
configure
vendored
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user