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.
This commit is contained in:
Thomas Heller 2007-11-02 19:10:24 +00:00
parent 3814a911aa
commit 486b1b0268
3 changed files with 10 additions and 1 deletions

View file

@ -1755,7 +1755,10 @@ AC_ARG_WITH(system_ffi,
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