Patch for ffcall on Darwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24894 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2007-03-18 04:47:04 +00:00
parent 2862e46497
commit 849e1153a6
4 changed files with 7 additions and 9 deletions

View file

@ -1,3 +1,9 @@
2007-03-17 Adam Fedor <fedor@gnu.org>
* config/config.trampoline.c: Check for proper CPU macro for Darwin
* configure.ac: Don't enable libffi by default on Darwin
(patches from Wolfgang Lux).
2007-03-17 Nicola Pero <nicola.pero@meta-innovation.com>
* SSL/GNUmakefile: Install the SSL bundle in the versioned

View file

@ -60,7 +60,7 @@ register void* env __asm__("%r29");
#ifdef __arm__
register void* env __asm__("r12");
#endif
#ifdef __powerpc__
#if defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__)
#ifdef __NetBSD__
register void* env __asm__("r13");
#else

4
configure vendored
View file

@ -15578,10 +15578,6 @@ fi
# We enable ffcall by default now.
#--------------------------------------------------------------------
do_enable_libffi=no
# Enable libffi by default on the following machines
case "$target_os" in
darwin*) do_enable_libffi=yes;;
esac
# Check whether --enable-libffi was given.
if test "${enable_libffi+set}" = set; then

View file

@ -1804,10 +1804,6 @@ fi
# We enable ffcall by default now.
#--------------------------------------------------------------------
do_enable_libffi=no
# Enable libffi by default on the following machines
case "$target_os" in
darwin*) do_enable_libffi=yes;;
esac
AC_ARG_ENABLE(libffi,
[ --enable-libffi Enable use of libffi library],,