mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
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
This commit is contained in:
parent
3702300cbb
commit
61c110fc31
2
configure
vendored
2
configure
vendored
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user