From: kramm Date: Sat, 27 Oct 2001 14:32:58 +0000 (+0000) Subject: * fixed a bug: jpeglib was named xjpeglib for testing X-Git-Tag: release-0-1-0~129 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=78154f318ded4f1f30623a519e176a34f2722e06 * fixed a bug: jpeglib was named xjpeglib for testing * use rm -f to remove the pdf2swf Makefile --- 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