X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=497176c39a92d64c2d6d175a9f2c27913243561c;hb=5830b155a9eeaa3e05e02490662a78106da0ef80;hp=57059e62d568146eb81e1e90ee88e113e954eee5;hpb=7f3740a5cb7e78612d803299d52d0506cc6dd22b;p=swftools.git diff --git a/configure.in b/configure.in index 57059e6..497176c 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,6 @@ dnl Process this file with autoconf to produce a configure script. + +dnl AC_INIT(src/) # old autoconf AC_INIT AC_CONFIG_SRCDIR([src/]) @@ -14,7 +16,8 @@ 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.1 +VERSION=2004-05-18-1254 + WARNINGS="-Wparentheses -Wimplicit -Wreturn-type" @@ -83,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, @@ -189,7 +200,40 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand bcopy bzero time) - RFX_CHECK_AVI2SWF + +# ------------------------------------------------------------------ + +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 @@ -199,31 +243,30 @@ 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) +# ------------------------------------------------------------------ + +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$(E)' export PNG2SWF -if test "x" = "x"; then - pythonrfxswf="lib/python/Makefile" -else - echo all install uninstall clean: > lib/python/Makefile -fi - if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" echo "The following headers/libraries are missing: " ${MISSINGLIBS} @@ -248,13 +291,14 @@ 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 lib/action/Makefile src/Makefile swfs/Makefile ${pythonrfxswf}" + 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 lib/action/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile swfs/Makefile ${pythonrfxswf}" + 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) +dnl AC_OUTPUT(${FILES}) old autoconf AC_CONFIG_FILES([${FILES}]) AC_OUTPUT