From cc908971a413c8b3d912f13e2a5c59c94cd86c96 Mon Sep 17 00:00:00 2001 From: Adam Fedor Date: Tue, 25 Dec 2007 03:38:54 +0000 Subject: [PATCH] Don't fail if ffcall trampolines don't work git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@25782 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 4 ++++ configure | 6 +++--- configure.ac | 7 ++++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index a572be1fd..e6f3889c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-12-24 Adam Fedor + + * configure.ac: Don't fail if ffcall trampolines don't work. + 2007-12-11 Richard Frith-Macdonald * Source/NSUserDefaults.m: catch exception when unlocking defaults diff --git a/configure b/configure index 1aba0faa1..4a20e56ba 100755 --- a/configure +++ b/configure @@ -14749,9 +14749,9 @@ rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext fi echo "$as_me:$LINENO: result: $have_working_trampoline" >&5 echo "${ECHO_T}$have_working_trampoline" >&6 - if test $have_working_trampoline = no; then - ffi_ok=no - fi + #if test $have_working_trampoline = no; then + # ffi_ok=no + #fi else ffi_ok=no fi diff --git a/configure.ac b/configure.ac index e0f25e35d..2dd8b237d 100644 --- a/configure.ac +++ b/configure.ac @@ -1904,9 +1904,10 @@ elif test $enable_ffcall = yes; then have_working_trampoline=yes, have_working_trampoline=no, have_working_trampoline=yes) AC_MSG_RESULT($have_working_trampoline) - if test $have_working_trampoline = no; then - ffi_ok=no - fi + # Don't enforce this. Sometimes things work fine anyway... + #if test $have_working_trampoline = no; then + # ffi_ok=no + #fi else ffi_ok=no fi