Author: manolo Date: 2011-03-01 11:45:05 -0800 (Tue, 01 Mar 2011) New Revision: 8491 Log: WORDS_BIGENDIAN has an architecture-dependent value.
Modified: branches/branch-1.3/ide/Xcode3/config.h Modified: branches/branch-1.3/ide/Xcode3/config.h =================================================================== --- branches/branch-1.3/ide/Xcode3/config.h 2011-03-01 14:39:22 UTC (rev 8490) +++ branches/branch-1.3/ide/Xcode3/config.h 2011-03-01 19:45:05 UTC (rev 8491) @@ -19,7 +19,11 @@ #define __APPLE_QUARTZ__ 1 #define HAVE_OVERLAY 0 #define HAVE_GL_OVERLAY HAVE_OVERLAY +#if defined(__ppc__) || defined(__ppc64__) +#define WORDS_BIGENDIAN 1 +#else #define WORDS_BIGENDIAN 0 +#endif #define U16 unsigned short #define U32 unsigned #define HAVE_DIRENT_H 1 _______________________________________________ fltk-commit mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-commit
