X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=31b5167e8a2f867bd196b59b69ac8ffc080b8780;hb=c719bed1f195a35d47372270214c528e4bb5430d;hp=6975ba1a915ca0c652e5834ce57db3344362520e;hpb=cd391a41668aa2ee499ca62911ed8ea7859bdcc6;p=swftools.git diff --git a/configure.in b/configure.in index 6975ba1..31b5167 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,8 @@ 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) @@ -13,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" @@ -82,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, @@ -217,12 +229,41 @@ export JPEG2SWF PNG2SWF='png2swf$(E)' export PNG2SWF -if test "x" = "x"; then +# ------------------------------------------------------------------ + +AC_MSG_CHECKING([for Python.h and PIL]) +# should we support python versions below 2.2? +if test -f "/usr/lib/python2.2/site-packages/PIL/_imaging.so" -a -f "/usr/include/python2.2/Python.h";then + PY_VERSION=2.2 +fi +if test -f "/usr/lib/python2.3/site-packages/PIL/_imaging.so" -a -f "/usr/include/python2.3/Python.h";then + PY_VERSION=2.3 +fi +if test -f "/usr/lib/python2.4/site-packages/PIL/_imaging.so" -a -f "/usr/include/python2.4/Python.h";then + PY_VERSION=2.4 +fi + +if test "x$PY_VERSION" "!=" "x"; then pythonrfxswf="lib/python/Makefile" + if test "x$PYTHON_LIB" = "x";then + PYTHON_LIB="-lpython$PY_VERSION /usr/lib/python$PY_VERSION/site-packages/PIL/_imaging.so" + fi + if test "x$PYTHON_INCLUDES" = "x";then + PYTHON_INCLUDES="-I/usr/include/python$PY_VERSION" + fi + export PYTHON_INCLUDES PYTHON_LIB + AC_SUBST(PYTHON_LIB) + AC_SUBST(PYTHON_INCLUDES) + AC_MSG_RESULT(yes) else echo all install uninstall clean: > lib/python/Makefile + AC_MSG_RESULT(nope) + echo "* No usable python installation found" + echo "* Not compiling the python interface" fi +# ------------------------------------------------------------------ + if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" echo "The following headers/libraries are missing: " ${MISSINGLIBS} @@ -254,7 +295,9 @@ 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"