From 9e7d4008772b44f816d4be6088db4b4a1b283be5 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 21 Jan 2007 21:48:35 +0000 Subject: [PATCH] don't whine if avifile isn't found --- configure.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/configure.in b/configure.in index 27b4b6c..84c57c3 100644 --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ AC_ARG_ENABLE(lame, [ --disable-lame don't compile any L.A.M.E. mp3 encoding code in], DISABLE_LAME=true) PACKAGE=swftools -VERSION=2007-01-13-1826 +VERSION=0.8.0 # ------------------------------------------------------------------ @@ -31,7 +31,7 @@ if test "x${srcdir}" != "x."; then exit 1 fi -WARNINGS="-Wparentheses -Wimplicit -Wreturn-type -Wno-unused-value" +WARNINGS="-Wparentheses -Wimplicit -Wreturn-type" if test "x$ENABLE_WARNINGS" '!=' "x";then WARNINGS="-Wall -Wno-unused -Wno-format -Wno-redundant-decls -D_FORTIFY_SOURCE=2 " fi @@ -210,7 +210,7 @@ fi AC_CHECK_LIB(jpeg, jpeg_write_raw_data,, JPEGLIBMISSING=true) AC_CHECK_LIB(t1, T1_LoadFont,, T1LIBMISSING=true) AC_CHECK_LIB(ungif, DGifOpen,, UNGIFMISSING=true) -if "$UNGIFMISSING";then +if test "$UNGIFMISSING";then UNGIFMISSING= AC_CHECK_LIB(gif, DGifOpen,, UNGIFMISSING=true) fi @@ -376,10 +376,9 @@ if test "x${ac_cv_header_zlib_h}" '!=' "xyes"; then MISSINGLIBS="${MISSINGLIBS} zlib.h" PARTIAL=true fi -if test "x${AVIFILE}" '!=' "xtrue" -a "x${AVIFIL32}" '!=' "xtrue"; then - MISSINGLIBS="${MISSINGLIBS} avifile" - PARTIAL=true -fi +#if test "x${AVIFILE}" '!=' "xtrue" -a "x${AVIFIL32}" '!=' "xtrue"; then +# MISSINGLIBS="${MISSINGLIBS} avifile" +#fi AC_MSG_RESULT(${MISSINGLIBS}) @@ -392,7 +391,8 @@ fi avi2swf="avi2swf/Makefile" if test "x${AVIFILE}" '!=' "xtrue" -a "x${AVIFIL32}" '!=' "xtrue"; then - echo "* Disabling avi2swf tool..." + #don't whine, avi2swf is outdated anyway + #echo "* Disabling avi2swf tool..." echo all install uninstall clean: > avi2swf/Makefile avi2swf= fi -- 1.7.10.4