? abiword.pc ? ac-helpers/compile ? goffice-bits/.deps ? src/pkg/linux/apkg/abiword-gnome.apspec ? src/pkg/linux/apkg/abiword-gtk.apspec ? src/pkg/maemo/abiword.desktop ? src/pkg/maemo/com.abisource.abiword.service ? src/wp/test/unix/testwrap.sh ? src/wp/test/win/testwrap.sh Index: src/af/util/xp/ut_endian.h =================================================================== RCS file: /cvsroot/abi/src/af/util/xp/ut_endian.h,v retrieving revision 1.14 diff -u -r1.14 ut_endian.h --- src/af/util/xp/ut_endian.h 8 Oct 2005 10:53:33 -0000 1.14 +++ src/af/util/xp/ut_endian.h 25 Nov 2006 22:40:51 -0000 @@ -60,13 +60,20 @@ #else #define UT_LITTLE_ENDIAN #endif -#elif defined(SunOS) /* this is defined by src/config/platform/sunos.mk */ +#elif defined(SunOS) /* this is defined by src/config/platforms/sunos.mk */ #include #if defined(_BIG_ENDIAN) #define UT_BIG_ENDIAN #elif defined(_LITTLE_ENDIAN) #define UT_LITTLE_ENDIAN #endif +#elif defined(__sun) || defined(__SVR4) /* this is defined by src/config/platforms/sunos.mk */ + #include /* I added this on the off chance that the old entry */ + #if defined(_BIG_ENDIAN) /* is required for a gcc build or the like */ + #define UT_BIG_ENDIAN /* David Bolack 11/25/2006 */ + #elif defined(_LITTLE_ENDIAN) + #define UT_LITTLE_ENDIAN + #endif #elif defined(__NetBSD__) || defined(__OpenBSD__) #include #if BYTE_ORDER == LITTLE_ENDIAN