Remove solaris-specific patch to test the build. Will back out after a cycle.

This commit is contained in:
Dan Witte 2010-01-02 19:44:41 -08:00
Родитель f8117d1fb1
Коммит a776107578
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -31,7 +31,7 @@
/* ---- System specific configurations ----------------------------------- */
#if defined (X86_64) && (defined (__i386__) || defined(__i386))
#if defined (X86_64) && defined (__i386__)
#undef X86_64
#define X86
#endif
@ -54,10 +54,10 @@ typedef enum ffi_abi {
#endif
/* ---- Intel x86 and AMD x86-64 - */
#if !defined(X86_WIN32) && (defined(__i386__) || defined(__i386) || defined(__x86_64__) || defined(__x86_64))
#if !defined(X86_WIN32) && (defined(__i386__) || defined(__x86_64__))
FFI_SYSV,
FFI_UNIX64, /* Unix variants all use the same ABI for x86-64 */
#if defined(__i386__) || defined(__i386)
#ifdef __i386__
FFI_DEFAULT_ABI = FFI_SYSV,
#else
FFI_DEFAULT_ABI = FFI_UNIX64,
@ -74,7 +74,7 @@ typedef enum ffi_abi {
#define FFI_TYPE_SMALL_STRUCT_1B (FFI_TYPE_LAST + 1)
#define FFI_TYPE_SMALL_STRUCT_2B (FFI_TYPE_LAST + 2)
#if defined (X86_64) || ((defined (__x86_64__) || defined (__x86_64)) && defined (X86_DARWIN))
#if defined (X86_64) || (defined (__x86_64__) && defined (X86_DARWIN))
#define FFI_TRAMPOLINE_SIZE 24
#define FFI_NATIVE_RAW_API 0
#else