summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 5b54801889..2da2fce641 100755
--- a/configure
+++ b/configure
@@ -6997,7 +6997,10 @@ echo "$_gui"
if test "$_gui" = yes ; then
# Required libraries
- test "$_libavcodec" != yes && die "The GUI requires libavcodec with PNG support."
+ if test "$_libavcodec" != yes ||
+ not "echo $_libavdecoders | grep PNG_DECODER >/dev/null 2>&1" ; then
+ die "The GUI requires libavcodec with PNG support."
+ fi
if not win32 ; then
test "$_x11" != yes && die "X11 support required for GUI compilation."