if png is disabled, set png_ok so the summary display is nice

SVN revision: 34325
This commit is contained in:
Mike Frysinger 2008-04-20 12:17:50 +00:00
parent 8dfa3558ef
commit eb492b5ed1
1 changed files with 2 additions and 0 deletions

View File

@ -278,6 +278,8 @@ if test "$png_loader" != no ; then
PKG_CHECK_MODULES(PNG, libpng10, [ png_ok="yes" ], [ png_ok="no"])
])
])
else
png_ok="no"
fi
AM_CONDITIONAL(BUILD_PNG_LOADER, test "$png_ok" = yes)