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
This commit is contained in:
Adam Fedor 2007-12-25 03:38:54 +00:00
parent ebd7ba3fad
commit cc908971a4
3 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2007-12-24 Adam Fedor <fedor@gnu.org>
* configure.ac: Don't fail if ffcall trampolines don't work.
2007-12-11 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSUserDefaults.m: catch exception when unlocking defaults

6
configure vendored
View file

@ -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

View file

@ -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