From 4bfdc29caa4d9391dace8a2b1b315926985e2dc1 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Tue, 11 Mar 2003 09:20:46 +0000 Subject: [PATCH] Corrected detection op png Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@748 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 8a09aa90..40a08010 100644 --- a/configure.in +++ b/configure.in @@ -65,7 +65,7 @@ AC_ARG_ENABLE(shots,[ --enable-shots Enable screenshot support],[ AC_CHECK_HEADER(png.h,have_png_h=yes,) AC_CHECK_LIB(png, png_check_sig, have_png_lib=yes, , -lz) - if test x$have_curses_lib = xyes -a x$have_curses_h = xyes ; then + if test x$have_png_lib = xyes -a x$have_png_h = xyes ; then LIBS="$LIBS -lpng" AC_DEFINE(C_SSHOTS,1) else