X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=20dd0aaa3f084fcee39da3719d6e7f14984a3d40;hb=9004a9942603308ba84dbe9c8c87d742025ea67b;hp=393126bde1877710e3479bbf43d07308ff81ad33;hpb=85a01ddfc9cd65307d194713d5a159fb99692a1e;p=swftools.git diff --git a/configure.in b/configure.in index 393126b..20dd0aa 100644 --- a/configure.in +++ b/configure.in @@ -7,11 +7,12 @@ AC_ARG_ENABLE(debug, [ --enable-debug turn on debugging], DEBUG=true) AC_ARG_ENABLE(optimizations, [ --enable-optimizations turn on compiler optimizations (recommended for avi2swf)], OPTIMIZE=true) -AC_ARG_ENABLE(mp3, -[ --disable-mp3 don't compile any mp3 code in], NO_MP3=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=2003-08-02-1416 +VERSION=0.5.0_pre1 + @@ -34,6 +35,13 @@ else if test "x$OPTIMIZE" '!=' "x"; then CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -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 @@ -68,7 +76,6 @@ fi AC_PROG_LN_S AC_PROG_LIBTOOL AC_CHECK_PROGS(UNCOMPRESS, gzip uncompress compress, ) - AC_CHECK_PROGS(FREETYPE_CONFIG, freetype-config, ) dnl Checks for system services AC_EXEEXT @@ -119,9 +126,8 @@ dnl Checks for libraries. DISABLEPDF2SWF=true; MISSINGLIBS="${MISSINGLIBS} t1lib" ) - AC_CHECK_LIB(freetype, FT_Init_FreeType, - USE_FREETYPE=true, - ) + +RFX_CHECK_FREETYPE RFX_CHECK_BYTEORDER AC_SUBST(WORDS_BIGENDIAN) @@ -151,9 +157,6 @@ if test "x${ac_cv_header_zlib_h}" != "xyes"; then ZLIBMISSING=true; fi -if test "x$USE_FREETYPE" != "x"; then - AC_DEFINE_UNQUOTED(USE_FREETYPE, "$USE_FREETYPE") -fi AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") AC_DEFINE_UNQUOTED(VERSION, "$VERSION") AC_SUBST(PACKAGE) @@ -177,7 +180,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" @@ -188,29 +191,14 @@ if test "x${AVIFILE}" != "xtrue"; then avi2swf= fi -if test "x${NO_MP3}" == "x"; then - AC_DEFINE_UNQUOTED(USE_MP3, 1) +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 - -if test "x${USE_FREETYPE}" == "xtrue"; then - if test "x{$FREETYPE_CONFIG}" != "x"; then - ftinclude=`freetype-config --cflags` - ftlibs=`freetype-config --libs` - CXXFLAGS="$CXXFLAGS $ftinclude" - CFLAGS="$CFLAGS $ftinclude" - LIBS="$LIBS $ftlibs" - else if test -d /usr/include/freetype2; then - CXXFLAGS="$CXXFLAGS -I/usr/include/freetype2" - CFLAGS="$CFLAGS -I/usr/include/freetype2" - LIBS="$LIBS -lfreetype" - else if test -d /usr/local/include/freetype2; then - CXXFLAGS="$CXXFLAGS -I/usr/local/include/freetype2" - CFLAGS="$CFLAGS -I/usr/local/include/freetype2" - LIBS="$LIBS -L /usr/local/lib -lfreetype" - fi - fi - fi -fi +AC_SUBST(lame_objects) if test "x${UNCOMPRESS}" = "xgzip"; then AC_DEFINE_UNQUOTED(USE_GZIP, 1) @@ -245,9 +233,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)