From f21268c5ec0607dadc42775d186b27704c18a399 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 14 Dec 2015 01:45:46 +0100 Subject: [PATCH] Use libpng instead of the older libpng12; seemingly fixes compilation on some systems. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 823740b..188d1fe 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ if test $with_SDL2 = "yes"; then else PKG_CHECK_MODULES([SDL_image], [SDL_image], [], [with_demo_app=no; AC_MSG_WARN([SDL_image not found, demo program will not be built])]) fi -PKG_CHECK_MODULES([libpng], [libpng12], [], [with_demo_app=no; AC_MSG_WARN([libpng12 not found, demo program will not be built])]) +PKG_CHECK_MODULES([libpng], [libpng], [], [with_demo_app=no; AC_MSG_WARN([libpng not found, demo program will not be built])]) AC_SUBST([with_demo_app]) AC_SUBST([with_SDL2]) -- 2.39.2