1 AC_DEFUN(RFX_CHECK_PYTHON,
3 AC_MSG_CHECKING([for Python.h and PIL])
5 if test "x$PYTHON_LIB" '!=' "x" -a "x$PYTHON_INCLUDES" '!=' "x";then
8 if test "x$PYTHON_LIB" '!=' "x" -o "x$PYTHON_INCLUDES" '!=' "x";then
9 echo "Set both PYTHON_LIB and PYTHON_INCLUDES, or none at all"
11 # iterate through version 2.2 to 2.4
14 if test -f "/usr/lib/python2.$v/site-packages/PIL/_imaging.so" -a -f "/usr/include/python2.$v/Python.h";then
16 PYTHON_LIB="-lpython$PY_VERSION /usr/lib/python$PY_VERSION/site-packages/PIL/_imaging.so"
17 PYTHON_INCLUDES="-I/usr/include/python$PY_VERSION"
19 elif test -f "/Library/Python/2.$v/PIL/_imaging.so" \
20 -a -f "/System/Library/Frameworks/Python.framework/Versions/2.$v/include/python2.$v/Python.h";then
22 PYTHON_LIB="-framework Python /Library/Python/2.$v/PIL/_imaging.so"
23 PYTHON_INCLUDES="-I/System/Library/Frameworks/Python.framework/Versions/2.$v/include/python2.$v/"
25 elif test "(" -f "/sw/lib/python2.$v/config/libpython2.$v.dylib" \
26 -o -f "/sw/lib/python2.$v/config/libpython2.$v.a" \
27 -o -f "/sw/lib/python2.$v/config/libpython2.$v.so" \
29 -a -f "/sw/include/python2.$v/Python.h" \
30 -a -f "/sw/lib/python2.$v/site-packages/PIL/_imaging.so";then
32 PYTHON_LIB="-L /sw/lib/python2.$v/config/ -lpython$PY_VERSION /sw/lib/python2.$v/site-packages/PIL/_imaging.so"
33 PYTHON_INCLUDES="-I /sw/include/python2.$v/"
38 if test "x$PY_VERSION" "!=" "x"; then
39 AC_MSG_RESULT($PY_VERSION)
40 export PYTHON_INCLUDES PYTHON_LIB
42 AC_SUBST(PYTHON_INCLUDES)
43 AC_MSG_CHECKING([whether we can compile the python test program])
45 cat > conftest.c << EOF
53 int x; // check also for gcc 2.95.x incompatibilities
57 ac_link='$CC $CPPFLAGS $CFLAGS $PYTHON_INCLUDES conftest.c $LDFLAGS $PYTHON_LIB $LIBS -o conftest${ac_exeext}'
58 if { (eval echo python.m4: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
62 echo "configure: failed program was:" >&5