mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
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:
parent
5ac27fa477
commit
e7e7a54ed8
4 changed files with 7 additions and 9 deletions
|
@ -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>
|
2007-03-17 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||||
|
|
||||||
* SSL/GNUmakefile: Install the SSL bundle in the versioned
|
* SSL/GNUmakefile: Install the SSL bundle in the versioned
|
||||||
|
|
|
@ -60,7 +60,7 @@ register void* env __asm__("%r29");
|
||||||
#ifdef __arm__
|
#ifdef __arm__
|
||||||
register void* env __asm__("r12");
|
register void* env __asm__("r12");
|
||||||
#endif
|
#endif
|
||||||
#ifdef __powerpc__
|
#if defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__)
|
||||||
#ifdef __NetBSD__
|
#ifdef __NetBSD__
|
||||||
register void* env __asm__("r13");
|
register void* env __asm__("r13");
|
||||||
#else
|
#else
|
||||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -15578,10 +15578,6 @@ fi
|
||||||
# We enable ffcall by default now.
|
# We enable ffcall by default now.
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
do_enable_libffi=no
|
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.
|
# Check whether --enable-libffi was given.
|
||||||
if test "${enable_libffi+set}" = set; then
|
if test "${enable_libffi+set}" = set; then
|
||||||
|
|
|
@ -1804,10 +1804,6 @@ fi
|
||||||
# We enable ffcall by default now.
|
# We enable ffcall by default now.
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
do_enable_libffi=no
|
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,
|
AC_ARG_ENABLE(libffi,
|
||||||
[ --enable-libffi Enable use of libffi library],,
|
[ --enable-libffi Enable use of libffi library],,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue