From: Måns Rullgård Date: Mon, 18 Jun 2007 21:42:38 +0000 (+0000) Subject: move lrintf() check before external lib checks to prevent runtime X-Git-Tag: v0.5~8643 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f32adb22def9af695add203baa63cf8b18816d9c;p=platform%2Fupstream%2Flibav.git move lrintf() check before external lib checks to prevent runtime errors from these interfering with lrintf() test Originally committed as revision 9364 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/configure b/configure index 424938e19..d0a1e5837 100755 --- a/configure +++ b/configure @@ -1561,6 +1561,13 @@ for thread in $THREADS_LIST; do fi done +# test for lrintf in math.h +check_exec < +int main( void ) { return (lrintf(3.999f) > 0)?0:1; } +EOF + enabled_any libamr_nb libamr_wb && enable libamr # these are off by default, so fail if requested and not available @@ -1581,13 +1588,6 @@ enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaa enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32 -# test for lrintf in math.h -check_exec < -int main( void ) { return (lrintf(3.999f) > 0)?0:1; } -EOF - _restrict= for restrict_keyword in restrict __restrict__ __restrict; do check_cc <