[FFmpeg-cvslog] r17695 - trunk/configure

Reimar Döffinger Reimar.Doeffinger
Sun Mar 1 19:14:10 CET 2009


On Sun, Mar 01, 2009 at 06:57:15PM +0100, mru wrote:
> Author: mru
> Date: Sun Mar  1 18:57:14 2009
> New Revision: 17695
> 
> Log:
> configure: fix return value from check_header
> 
> Modified:
>    trunk/configure
> 
> Modified: trunk/configure
> ==============================================================================
> --- trunk/configure	Sun Mar  1 18:13:33 2009	(r17694)
> +++ trunk/configure	Sun Mar  1 18:57:14 2009	(r17695)
> @@ -574,7 +574,8 @@ check_header(){
>      log check_header "$@"
>      header=$1
>      shift
> -    check_cpp "$@" <<EOF && enable_safe $header || disable_safe $header
> +    disable_safe $header
> +    check_cpp "$@" <<EOF && enable_safe $header
>  #include <$header>
>  int x;
>  EOF

Does check_asm have the same issue? It's no problem since its return
value is not used anywhere but it might be better to not make things
needlessly confusing...




More information about the ffmpeg-cvslog mailing list