On Mon, Jan 30, 2006 at 07:02:31PM +0000, Ian Jackson wrote: > Package: firefox > Version: 1.5.dfsg-4 > > The attached patch recognises mipsel as a little endian arch. > > We have applied this in Ubuntu but I'm not sure why, as Ubuntu doesn't > support mipsel. Oh well. > > Ian. > > diff -ruN debian/firefox-1.5.dfsg/js/src/fdlibm/fdlibm.h > firefox-1.5.dfsg/js/src/fdlibm/fdlibm.h > --- debian/firefox-1.5.dfsg/js/src/fdlibm/fdlibm.h 2005-07-20 > 04:18:59.000000000 +0100 > +++ firefox-1.5.dfsg/js/src/fdlibm/fdlibm.h 2006-01-30 10:47:16.000000000 > +0000 > @@ -61,7 +61,7 @@ > #define __LITTLE_ENDIAN > #endif > > -#if defined(linux) && (defined(__i386__) || defined(__x86_64__) || > defined(__ia64)) > +#if defined(linux) && (defined(__i386__) || defined(__x86_64__) || > defined(__ia64) || defined(__MIPSEL)) > #define __LITTLE_ENDIAN > #endif
This should probably be ... || (defined(__mips) && defined(__MIPSEL__))) Thiemo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]