From 9a47b10d958ece028b24f2c547bb1891e004cb3a Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Wed, 20 Jan 2010 19:42:46 +0000 Subject: Ticket #1026: Wrong endianness detection for Motorola m68k architecture in pj/config.h (thanks Andreas Wehrmann for the report) git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3066 74dad513-b988-da41-8d7b-12977e46ad98 --- pjlib/include/pj/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pjlib/include') diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h index ab37d2df..b1ef3ab9 100644 --- a/pjlib/include/pj/config.h +++ b/pjlib/include/pj/config.h @@ -177,14 +177,14 @@ #elif defined (PJ_M_M68K) && PJ_M_M68K != 0 /* - * Motorola m64k processor, little endian + * Motorola m68k processor, big endian */ # undef PJ_M_M68K # define PJ_M_M68K 1 # define PJ_M_NAME "m68k" # define PJ_HAS_PENTIUM 0 -# define PJ_IS_LITTLE_ENDIAN 1 -# define PJ_IS_BIG_ENDIAN 0 +# define PJ_IS_LITTLE_ENDIAN 0 +# define PJ_IS_BIG_ENDIAN 1 #elif defined (PJ_M_ALPHA) || defined (__alpha__) || defined (__alpha) || \ -- cgit v1.2.3