From 73e1a474f9af56a860c4ac4b24532099ae84dae3 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Fri, 14 Mar 2003 12:37:05 +0000 Subject: [PATCH] changed C_SSHOTS to C_SSHOT Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@771 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 37e4dfc2..6a099c2b 100644 --- a/configure.in +++ b/configure.in @@ -60,14 +60,14 @@ AC_ARG_ENABLE(debug,[ --enable-debug Enable debug mode],[ fi ],) -AH_TEMPLATE(C_SSHOTS,[Define to 1 to enable screenshots, requires libpng]) +AH_TEMPLATE(C_SSHOT,[Define to 1 to enable screenshots, requires libpng]) 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_png_lib = xyes -a x$have_png_h = xyes ; then LIBS="$LIBS -lpng" - AC_DEFINE(C_SSHOTS,1) + AC_DEFINE(C_SSHOT,1) else AC_MSG_WARN([Can't enable screenshots without libpng]) fi