X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=m4%2Fpython.m4;h=c6977287ffce7999e683d549ee815cd20daefce5;hp=23deed700c03f6aed7b6da841d7de02046006a52;hb=dd1bf09dad3b85a6e97063d9e54370643d4bd11a;hpb=76305c0f4f93b959002b51056650df928d94ba09 diff --git a/m4/python.m4 b/m4/python.m4 index 23deed7..c697728 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -1,6 +1,6 @@ AC_DEFUN(RFX_CHECK_PYTHON, [ -AC_MSG_CHECKING([for Python.h and PIL]) +AC_MSG_CHECKING([for Python.h]) if test "x$PYTHON_LIB" '!=' "x" -a "x$PYTHON_INCLUDES" '!=' "x";then PY_VERSION=unknown @@ -11,9 +11,15 @@ else # iterate through version 2.2 to 2.5 for v in 2 3 4 5; do # Linux - if test -f "/usr/lib/python2.$v/site-packages/PIL/_imaging.so" -a -f "/usr/include/python2.$v/Python.h";then + if test -f "/usr/include/python2.$v/Python.h";then PY_VERSION=2.$v - PYTHON_LIB="-lpython$PY_VERSION /usr/lib/python$PY_VERSION/site-packages/PIL/_imaging.so" + PYTHON_LIB="-lpython$PY_VERSION" + if test -f "/usr/lib/python2.$v/site-packages/PIL/_imaging.so";then + PYTHON_LIB2="$PYTHON_LIB /usr/lib/python2.$v/site-packages/PIL/_imaging.so" + HAVE_PYTHON_IMAGING_LIB=1 + else + PYTHON_LIB2="$PYTHON_LIB" + fi PYTHON_INCLUDES="-I/usr/include/python$PY_VERSION" # Mac OS X elif test -f "/System/Library/Frameworks/Python.framework/Versions/2.$v/include/python2.$v/Python.h";then @@ -22,6 +28,7 @@ else PYTHON_LIB="-framework Python" if test -f "/Library/Python/2.$v/PIL/_imaging.so";then PYTHON_LIB2="$PYTHON_LIB /Library/Python/2.$v/PIL/_imaging.so" + HAVE_PYTHON_IMAGING_LIB=1 else PYTHON_LIB2="$PYTHON_LIB" fi @@ -31,10 +38,15 @@ else -o -f "/sw/lib/python2.$v/config/libpython2.$v.a" \ -o -f "/sw/lib/python2.$v/config/libpython2.$v.so" \ ")" \ - -a -f "/sw/include/python2.$v/Python.h" \ - -a -f "/sw/lib/python2.$v/site-packages/PIL/_imaging.so";then + -a -f "/sw/include/python2.$v/Python.h"; then PY_VERSION=2.$v PYTHON_LIB="-L /sw/lib/python2.$v/config/ -lpython$PY_VERSION /sw/lib/python2.$v/site-packages/PIL/_imaging.so" + if test -f "/sw/lib/python2.$v/site-packages/PIL/_imaging.so";then + PYTHON_LIB2="$PYTHON_LIB /sw/lib/python2.$v/site-packages/PIL/_imaging.so" + HAVE_PYTHON_IMAGING_LIB=1 + else + PYTHON_LIB2="$PYTHON_LIB" + fi PYTHON_INCLUDES="-I /sw/include/python2.$v/" fi done @@ -49,7 +61,6 @@ if test "x$PY_VERSION" "!=" "x"; then cat > conftest.c << EOF #include -#include int main() { @@ -59,19 +70,45 @@ int main() return ret; } EOF + ac_link='$CC $CPPFLAGS $CFLAGS $PYTHON_INCLUDES conftest.c $LDFLAGS $PYTHON_LIB $LIBS -o conftest${ac_exeext}' if { (eval echo python.m4: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then AC_MSG_RESULT(yes) PYTHON_OK=yes else - ac_link='$CC $CPPFLAGS $CFLAGS $PYTHON_INCLUDES conftest.c $LDFLAGS ${PYTHON_LIB2} $LIBS -o conftest${ac_exeext}' - if { (eval echo python.m4: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - AC_MSG_RESULT(yes) - PYTHON_LIB="${PYTHON_LIB2}" - PYTHON_OK=yes + echo "configure: failed program was:" >&5 + cat conftest.c >&5 + AC_MSG_RESULT(no) + fi + rm -f conftest* + if test "x$PYTHON_OK" = "xyes";then + AC_MSG_CHECKING([for Python-Imaging]) + cat > conftest.c << EOF +#include +#include + +int main() +{ + Py_Main(0, 0); + return 0; +} +EOF + if test "$HAVE_PYTHON_IMAGING_LIB"; then + ac_link='$CC $CPPFLAGS $CFLAGS $PYTHON_INCLUDES conftest.c $LDFLAGS ${PYTHON_LIB2} $LIBS -o conftest${ac_exeext}' + if { (eval echo python.m4: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + PYTHON_LIB="${PYTHON_LIB2}" + AC_DEFINE_UNQUOTED(HAVE_PYTHON_IMAGING, 1) + HAVE_PYTHON_IMAGING=yes + export HAVE_PYTHON_IMAGING + AC_SUBST(HAVE_PYTHON_IMAGING) + AC_MSG_RESULT(yes) + else + echo "configure: failed program was:" >&5 + cat conftest.c >&5 + AC_MSG_RESULT(no) + fi else - echo "configure: failed program was:" >&5 - cat conftest.c >&5 + echo "(didn't find the Python-Imaging libraries)" >&5 AC_MSG_RESULT(no) fi fi