Matthias Klose added the comment:
committed the following patch to the trunk (lets the buildds test the
ctypes extension)
Added file: http://bugs.python.org/file8605/arm.diff
__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1292>
__________________________________
Index: configure.in
===================================================================
--- configure.in (revision 58643)
+++ configure.in (working copy)
@@ -1748,12 +1748,16 @@
[AC_MSG_RESULT(no)])
# Check for use of the system libffi library
+AC_CHECK_HEADER(ffi.h)
AC_MSG_CHECKING(for --with-system-ffi)
AC_ARG_WITH(system_ffi,
AC_HELP_STRING(--with-system-ffi, build _ctypes module using an installed ffi library))
-if test -z "$with_system_ffi"
-then with_system_ffi="no"
+if test -z "$with_system_ffi" && test "$ac_cv_header_ffi_h" = yes; then
+ case "$ac_sys_system/`uname -m`" in
+ Linux/arm*) with_system_ffi="yes";;
+ *) with_system_ffi="no"
+ esac
fi
AC_MSG_RESULT($with_system_ffi)
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com