From 78154f318ded4f1f30623a519e176a34f2722e06 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 27 Oct 2001 14:32:58 +0000 Subject: [PATCH] * fixed a bug: jpeglib was named xjpeglib for testing * use rm -f to remove the pdf2swf Makefile --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 41b7f45..f17af10 100644 --- a/configure.in +++ b/configure.in @@ -32,7 +32,7 @@ dnl Checks for libraries. MISSINGLIBS="${MISSINGLIBS} zlib" exit; ) - AC_CHECK_LIB(xjpeg, jpeg_write_raw_data,, + AC_CHECK_LIB(jpeg, jpeg_write_raw_data,, DISABLEPDF2SWF=true; DISABLEJPEG2SWF=true; MISSINGLIBS="${MISSINGLIBS} jpeglib" @@ -95,7 +95,7 @@ if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" echo "The following headers/libraries are missing: " ${MISSINGLIBS} echo "Disabling pdf2swf tool..." - rm pdf2swf/Makefile + rm -f pdf2swf/Makefile echo all: > pdf2swf/Makefile echo install: >> pdf2swf/Makefile if test "x${DISABLEJPEG2SWF}" = "xtrue"; then -- 1.7.10.4