[FFmpeg-cvslog] configure: disable VDA on ppc, fix build

Reimar Döffinger Reimar.Doeffinger at gmx.de
Sun Sep 23 17:45:54 CEST 2012


On Sun, Sep 23, 2012 at 05:38:37PM +0200, Sebastien Zwickert wrote:
> ffmpeg | branch: master | Sebastien Zwickert <dilaroga at gmail.com> | Sun Sep 23 17:25:36 2012 +0200| [f25d53d95f62693724a59a4be8454c8ae58b8359] | committer: Michael Niedermayer
> 
> configure: disable VDA on ppc, fix build
> 
> Fixes Ticket1760
> 
> Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> 
> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f25d53d95f62693724a59a4be8454c8ae58b8359
> ---
> 
>  configure |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index c001c5f..e9f98c1 100755
> --- a/configure
> +++ b/configure
> @@ -3557,7 +3557,7 @@ disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
>  disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
>  
>  # check for VDA header
> -if ! disabled vda; then
> +if ! disabled vda && ! enabled ppc; then
>      if check_header VideoDecodeAcceleration/VDADecoder.h; then

Shouldn't rather the check_header be changed into something that tests
compilation instead? Checking for the architecture seems like a hack.


More information about the ffmpeg-cvslog mailing list