Commit 4148df12 by Mike Stump Committed by Mike Stump

posix.h: .dylib is used on all Apple MACH platforms.

        * include/posix.h: .dylib is used on all Apple MACH platforms.
        * java/lang/ieeefp.h: ppc64 is also __IEEE_BIG_ENDIAN.

From-SVN: r96889
parent 9ea1c2f6
2005-03-22 Mike Stump <mrs@apple.com>
* include/posix.h: .dylib is used on all Apple MACH platforms.
* java/lang/ieeefp.h: ppc64 is also __IEEE_BIG_ENDIAN.
2005-03-22 Tom Tromey <tromey@redhat.com> 2005-03-22 Tom Tromey <tromey@redhat.com>
* gnu/gcj/tools/gcj_dbtool/Main.java (usage): Fixed output. * gnu/gcj/tools/gcj_dbtool/Main.java (usage): Fixed output.
......
...@@ -42,7 +42,7 @@ details. */ ...@@ -42,7 +42,7 @@ details. */
// Prefix and suffix for shared libraries. // Prefix and suffix for shared libraries.
#define _Jv_platform_solib_prefix "lib" #define _Jv_platform_solib_prefix "lib"
#if defined(__APPLE__) && defined(__MACH__) && defined(__ppc__) #if defined(__APPLE__) && defined(__MACH__)
#define _Jv_platform_solib_suffix ".dylib" #define _Jv_platform_solib_suffix ".dylib"
#else #else
#define _Jv_platform_solib_suffix ".so" #define _Jv_platform_solib_suffix ".so"
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
#define __IEEE_LITTLE_ENDIAN #define __IEEE_LITTLE_ENDIAN
#endif #endif
#if defined (__PPC__) || defined (__ppc__) #if defined (__PPC__) || defined (__ppc__) || defined (__ppc64__)
#if (defined(_BIG_ENDIAN) && _BIG_ENDIAN) || (defined(_AIX) && _AIX) \ #if (defined(_BIG_ENDIAN) && _BIG_ENDIAN) || (defined(_AIX) && _AIX) \
|| defined (__APPLE__) || defined (__APPLE__)
#define __IEEE_BIG_ENDIAN #define __IEEE_BIG_ENDIAN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment