don't try to figure out G_BYTE_ORDER for ourselves

-Yosh
This commit is contained in:
Manish Singh 1999-06-21 23:49:41 +00:00
parent f1b5e1ae47
commit 650aae34c6
3 changed files with 5 additions and 24 deletions

View File

@ -1,3 +1,8 @@
Mon Jun 21 16:47:32 PDT 1999 Manish Singh <yosh@gimp.org>
* plug-ins/mpeg/mpeg.c: don't try to figure out G_BYTE_ORDER for
ourselves
1999-06-21 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/context_manager.c: namespace cleanups.

View File

@ -71,18 +71,6 @@
*/
/* endianness guessing from wmf.c */
#define G_LITTLE_ENDIAN 1234
#define G_BIG_ENDIAN 4321
#if defined(__i386__)
#define G_BYTE_ORDER G_LITTLE_ENDIAN
#elif defined(__hppa) || defined(__sparc)
#define G_BYTE_ORDER G_BIG_ENDIAN
#else
#error set byte order by hand by adding your machine above
#endif
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>

View File

@ -71,18 +71,6 @@
*/
/* endianness guessing from wmf.c */
#define G_LITTLE_ENDIAN 1234
#define G_BIG_ENDIAN 4321
#if defined(__i386__)
#define G_BYTE_ORDER G_LITTLE_ENDIAN
#elif defined(__hppa) || defined(__sparc)
#define G_BYTE_ORDER G_BIG_ENDIAN
#else
#error set byte order by hand by adding your machine above
#endif
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>