Mercurial > mplayer.hg
comparison configure @ 23535:8337977cc1c5
Do not allow to compile gui without PNG decoder in libavcodec.
author | cehoyos |
---|---|
date | Wed, 13 Jun 2007 11:04:01 +0000 |
parents | a6c619ee9d30 |
children | d198ab45f7c9 |
comparison
equal
deleted
inserted
replaced
23534:09eb4ed0c130 | 23535:8337977cc1c5 |
---|---|
6995 echocheck "GUI" | 6995 echocheck "GUI" |
6996 echo "$_gui" | 6996 echo "$_gui" |
6997 if test "$_gui" = yes ; then | 6997 if test "$_gui" = yes ; then |
6998 | 6998 |
6999 # Required libraries | 6999 # Required libraries |
7000 test "$_libavcodec" != yes && die "The GUI requires libavcodec with PNG support." | 7000 if test "$_libavcodec" != yes || |
7001 not "echo $_libavdecoders | grep PNG_DECODER >/dev/null 2>&1" ; then | |
7002 die "The GUI requires libavcodec with PNG support." | |
7003 fi | |
7001 if not win32 ; then | 7004 if not win32 ; then |
7002 test "$_x11" != yes && die "X11 support required for GUI compilation." | 7005 test "$_x11" != yes && die "X11 support required for GUI compilation." |
7003 | 7006 |
7004 echocheck "XShape extension" | 7007 echocheck "XShape extension" |
7005 if test "$_xshape" = auto ; then | 7008 if test "$_xshape" = auto ; then |