X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=configure.in;h=493e35a0e4a5b2e8586cb08622ceb43bc1ef066c;hp=444e533b8462c2baabf07eb304aef8dae76f4601;hb=108511d4d44407f9e8b1d6dbb8bafcda5b331973;hpb=5c5bdb50a110c125e97152a78782bc268b19d8d7 diff --git a/configure.in b/configure.in index 444e533..493e35a 100644 --- a/configure.in +++ b/configure.in @@ -5,24 +5,45 @@ AC_ARG_ENABLE(checkmem, [ --enable-checkmem turn on ccmalloc debugging], CHECKMEM=true) AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging], DEBUG=true) +AC_ARG_ENABLE(warnings, +[ --enable-warnings turn on compiler warnings], ENABLE_WARNINGS=true) +AC_ARG_ENABLE(optimizations, +[ --enable-optimizations turn on compiler optimizations (recommended for avi2swf)], OPTIMIZE=true) +AC_ARG_ENABLE(lame, +[ --disable-lame don't compile any L.A.M.E. mp3 encoding code in], DISABLE_LAME=true) PACKAGE=swftools -VERSION=0.4.4-pre11 -# -Winline? +VERSION=0.5.0_pre1 + +WARNINGS="-Wparentheses -Wimplicit -Wreturn-type" +if test "x$ENABLE_WARNINGS" '!=' "x";then + WARNINGS="-Wall -Wno-unused -Wno-format" +fi if test "x$CHECKMEM" '!=' "x";then DEBUG=yes fi if test "x$DEBUG" '!=' "x";then - CFLAGS="-Wparentheses -Wimplicit -Wreturn-type -g $CFLAGS" - CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -g $CXXFLAGS" - STRIP="echo debug enabled, not stripping " + CFLAGS="$WARNINGS -g $CFLAGS" + CXXFLAGS="$WARNINGS -g $CXXFLAGS" + STRIP="@echo debug enabled, not stripping " export STRIP AC_SUBST(STRIP) +else if test "x$OPTIMIZE" '!=' "x"; then + CFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CFLAGS" + CXXFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CXXFLAGS" else - CFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O -fomit-frame-pointer $CFLAGS" - CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O -fomit-frame-pointer $CXXFLAGS" + CFLAGS="$WARNINGS -O -fomit-frame-pointer $CFLAGS" + CXXFLAGS="$WARNINGS -O -fomit-frame-pointer $CXXFLAGS" fi +fi +#OLDGCC=1 +#if test "x$OLDGCC" '!=' "x";then +# #CFLAGS="$CFLAGS --std=c89 -ansi -pendantic" +# #CXXFLAGS="$CXXFLAGS --std=c89 -ansi -pendantic" +# CFLAGS="$CFLAGS -ansi -pendantic" +# CXXFLAGS="$CXXFLAGS -ansi -pendantic" +#fi export PACKAGE VERSION CFLAGS CXXFLAGS @@ -108,6 +129,8 @@ dnl Checks for libraries. MISSINGLIBS="${MISSINGLIBS} t1lib" ) +RFX_CHECK_FREETYPE + RFX_CHECK_BYTEORDER AC_SUBST(WORDS_BIGENDIAN) RFX_CHECK_SYSTEM_BACKTICKS @@ -119,7 +142,7 @@ dnl Checks for header files. AC_CONFIG_HEADER(config.h) AC_HEADER_DIRENT AC_HEADER_STDC - AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.h sys/stat.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h) + AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.h assert.h signal.h pthread.h sys/stat.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h) if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then DISABLEPDF2SWF=true; @@ -159,7 +182,7 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl AC_CHECK_TYPE(uint,unsigned long int) dnl Checks for library functions. - AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand) + AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand bcopy bzero) RFX_CHECK_AVI2SWF avi2swf="avi2swf/Makefile" @@ -170,14 +193,23 @@ if test "x${AVIFILE}" != "xtrue"; then avi2swf= fi +if test "x${DISABLE_LAME}" = "xtrue"; then + echo "*" Disabling lame support... + lame_objects= +else + AC_DEFINE_UNQUOTED(HAVE_LAME, 1) + lame_objects='$(lame_objects_2)' +fi +AC_SUBST(lame_objects) + if test "x${UNCOMPRESS}" = "xgzip"; then AC_DEFINE_UNQUOTED(USE_GZIP, 1) fi AC_SUBST(USE_GZIP) -JPEG2SWF='jpeg2swf' #$(EXEEXT) +JPEG2SWF='jpeg2swf$(E)' export JPEG2SWF -PNG2SWF='png2swf' #$(EXEEXT) +PNG2SWF='png2swf$(E)' export PNG2SWF if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" @@ -203,9 +235,9 @@ if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "or write compressed Flash MX files!" fi echo "***************************************************" - FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile src/Makefile swfs/Makefile" + FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile lib/action/Makefile src/Makefile swfs/Makefile" else - FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile swfs/Makefile" + FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile lib/action/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile swfs/Makefile" fi AC_SUBST(JPEG2SWF) AC_SUBST(PNG2SWF)