>>>>> On Wed, 6 Apr 2005 16:40:38 -0400, Eric Dorland <[EMAIL PROTECTED]> said:
Eric> Err, I haven't done it yet, 1.0.2-3 doesn't contain the fix, I
Eric> uploaded him last night, but 1.0.2-4 or 1.0.3-1 will.
I just noticed my patch was slightly off (misplaced closing paren). The
correct patch looks like this:
--- js/src/fdlibm/fdlibm.h-orig 2005-04-06 10:42:12.000000000 -0700
+++ js/src/fdlibm/fdlibm.h 2005-04-06 10:42:13.000000000 -0700
@@ -61,7 +61,7 @@
#define __LITTLE_ENDIAN
#endif
-#if defined(linux) && (defined(__i386__) || defined(__x86_64__))
+#if defined(linux) && (defined(__i386__) || defined(__x86_64__) ||
defined(__ia64))
#define __LITTLE_ENDIAN
#endif
The original patch works for ia64 linux but it would have the effect
of turning on __LITTLE_ENDIAN for _all_ ia64 platforms, which would be
wrong (e.g., HP-UX is big-endian). Not that it matters for Debian,
but this revised patch is better.
--david
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]