diff options
author | Thomas Heller <theller@ctypes.org> | 2007-11-02 19:10:24 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-11-02 19:10:24 (GMT) |
commit | 486b1b0268eb7fc34b3fb457ac503ea4de4d76a9 (patch) | |
tree | 03c67e31e0b59660fc1831973e1aff4dd2eeb79d /configure | |
parent | 3814a911aa6953a5aefbe8150d280d3a20747d6d (diff) | |
download | cpython-486b1b0268eb7fc34b3fb457ac503ea4de4d76a9.zip cpython-486b1b0268eb7fc34b3fb457ac503ea4de4d76a9.tar.gz cpython-486b1b0268eb7fc34b3fb457ac503ea4de4d76a9.tar.bz2 |
Issue #1292: On alpha, arm, ppc, and s390 linux systems the
--with-system-ffi configure option defaults to "yes" because the
bundled libffi sources are too old.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 58645 . +# From configure.in Revision: 58653 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.6. # @@ -12955,7 +12955,10 @@ fi if test -z "$with_system_ffi" && test "$ac_cv_header_ffi_h" = yes; then case "$ac_sys_system/`uname -m`" in + Linux/alpha*) with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";; Linux/arm*) with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";; + Linux/ppc*) with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";; + Linux/s390*) with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";; *) with_system_ffi="no" esac fi |