X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=497176c39a92d64c2d6d175a9f2c27913243561c;hb=77c2e7b8b3411124fbb3da565ff1f5c2b45a147c;hp=a60f54e7e31910fee480bb83df2960c363b8133b;hpb=651ed8a3a1b72e3eec75b103186651c2a309bbb8;p=swftools.git diff --git a/configure.in b/configure.in index a60f54e..497176c 100644 --- a/configure.in +++ b/configure.in @@ -1,28 +1,51 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(src/) + +dnl AC_INIT(src/) # old autoconf +AC_INIT +AC_CONFIG_SRCDIR([src/]) 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.5.0-pre4 -# -Winline? +VERSION=2004-05-18-1254 + + + +WARNINGS="-Wparentheses -Wimplicit -Wreturn-type" +if test "x$ENABLE_WARNINGS" '!=' "x";then + WARNINGS="-Wall -Wno-unused -Wno-format -Wno-redundant-decls" +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 " - export STRIP - AC_SUBST(STRIP) + CFLAGS="$WARNINGS -g $CFLAGS" + CXXFLAGS="$WARNINGS -g $CXXFLAGS" +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 @@ -39,7 +62,7 @@ esac dnl Checks for programs. AC_PROG_CC AC_PROG_CXX - + if test "x$CHECKMEM" '!=' "x";then CC="ccmalloc $CC" CXX="ccmalloc $CXX" @@ -63,9 +86,17 @@ dnl Checks for system services RFX_CHECK_MING +SLEXT="so" if test "x${MINGW}" != "xyes"; then + # no mingW AC_DEFINE_UNQUOTED(O_BINARY, 0) +else + # mingW + SLEXT="dll" fi +export SLEXT +AC_SUBST(SLEXT) + # The following tries to make use of includes and libraries in # /usr/local, too. Notice: A -I/usr/local/include might break # things (MingW, cross-compiling etc.) in the same way as -I/usr/include, @@ -88,6 +119,13 @@ if test "$prefix" != "NONE" -a "$prefix" != "/usr/local" -a "$prefix" != "/usr/l # TODO- test whether gcc still works after this fi +# this must be done after (I believe) AC_PROG_MAKE_SET +if test "x$DEBUG" '!=' "x";then + STRIP="@echo debug enabled, not stripping " + export STRIP + AC_SUBST(STRIP) +fi + dnl Checks for libraries. AC_CHECK_LIB(m, sin,, echo "Error: Math library not found."; @@ -108,6 +146,8 @@ dnl Checks for libraries. MISSINGLIBS="${MISSINGLIBS} t1lib" ) +RFX_CHECK_FREETYPE + RFX_CHECK_BYTEORDER AC_SUBST(WORDS_BIGENDIAN) RFX_CHECK_SYSTEM_BACKTICKS @@ -119,7 +159,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 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) + 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 time.h) if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then DISABLEPDF2SWF=true; @@ -159,8 +199,41 @@ 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) - RFX_CHECK_AVI2SWF + AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand bcopy bzero time) + +# ------------------------------------------------------------------ + +lame_objects= +lame_makefile= +if test "x${DISABLE_LAME}" = "xtrue"; then + echo "*" Disabling lame support... +else + # old lame code at lib/lame + if test -f lib/lame/Makefile.in; then + lame_objects="lame/psymodel.o lame/fft.o lame/newmdct.o lame/quantize.o lame/takehiro.o lame/reservoir.o lame/quantize_pvt.o lame/vbrquantize.o lame/encoder.o lame/id3tag.o lame/version.o lame/tables.o lame/util.o lame/bitstream.o lame/set_get.o lame/VbrTag.o lame/lame.o" + lame_makefile="lib/lame/Makefile" + CPPFLAGS="$CPPFLAGS -Ilame" + AC_DEFINE_UNQUOTED(HAVE_LAME, 1) + else + if test -d /usr/include/lame; then + CPPFLAGS="$CPPFLAGS -I /usr/include/lame" + else + if test -d /usr/local/include/lame; then + CPPFLAGS="$CPPFLAGS -I /usr/local/include/lame" + fi + fi + AC_CHECK_LIB(mp3lame, lame_init,, NO_LIBMP3LAME=1) + AC_CHECK_HEADERS(lame.h) + if test "x$NO_LIBMP3LAME" "!=" "x1" -a "x$ac_cv_header_lame_h" "!=" "x";then + AC_DEFINE_UNQUOTED(HAVE_LAME, 1) + fi + fi +fi +AC_SUBST(lame_objects) + +# ------------------------------------------------------------------ + +RFX_CHECK_AVI2SWF avi2swf="avi2swf/Makefile" if test "x${AVIFILE}" != "xtrue"; then @@ -170,15 +243,30 @@ if test "x${AVIFILE}" != "xtrue"; then avi2swf= fi +# ------------------------------------------------------------------ + if test "x${UNCOMPRESS}" = "xgzip"; then AC_DEFINE_UNQUOTED(USE_GZIP, 1) fi AC_SUBST(USE_GZIP) -JPEG2SWF='jpeg2swf' #$(EXEEXT) +# ------------------------------------------------------------------ + +RFX_CHECK_PYTHON + +if test "x$PYTHON_OK" '!=' "xyes";then + echo all install uninstall clean: > lib/python/Makefile + echo "* No usable python installation found" + echo "* Not compiling the python interface" +fi + +# ------------------------------------------------------------------ + +JPEG2SWF='jpeg2swf$(E)' export JPEG2SWF -PNG2SWF='png2swf' #$(EXEEXT) +PNG2SWF='png2swf$(E)' export PNG2SWF + if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" echo "The following headers/libraries are missing: " ${MISSINGLIBS} @@ -203,14 +291,16 @@ 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/Makefile lib/action/Makefile src/Makefile swfs/Makefile ${pythonrfxswf} ${lame_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/Makefile lib/action/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile swfs/Makefile ${pythonrfxswf} ${lame_makefile}" fi AC_SUBST(JPEG2SWF) AC_SUBST(PNG2SWF) -AC_OUTPUT(${FILES}) +dnl AC_OUTPUT(${FILES}) old autoconf +AC_CONFIG_FILES([${FILES}]) +AC_OUTPUT if test "x${srcdir}" != "x."; then echo "Warning: --srcdir is not supported"