mirror of https://github.com/GNOME/gimp.git
parent
f1b5e1ae47
commit
650aae34c6
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue