mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 957002. Stop including prtypes.h for endian macros. r=jrmuizel
We don't need these anymore. --HG-- rename : config/autoconf-js.mk.in => config/autoconf.mk.in rename : config/emptyvars-js.mk.in => config/emptyvars.mk.in rename : dom/events/test/test_bug967796.html => dom/events/test/test_bug432698.html extra : rebase_source : e9879157bb3efa8c1834c9d57ecfca8ddb9567a8
This commit is contained in:
parent
fd8eb83796
commit
9411ded657
@ -1,21 +1,6 @@
|
|||||||
#ifndef QCMS_TYPES_H
|
#ifndef QCMS_TYPES_H
|
||||||
#define QCMS_TYPES_H
|
#define QCMS_TYPES_H
|
||||||
|
|
||||||
#ifdef MOZ_QCMS
|
|
||||||
|
|
||||||
#include "prtypes.h"
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
/* prtypes.h defines IS_LITTLE_ENDIAN and IS_BIG ENDIAN */
|
|
||||||
|
|
||||||
#if defined(_AIX)
|
|
||||||
#include <sys/types.h>
|
|
||||||
#elif defined(__OS2__)
|
|
||||||
#include <stdlib.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#else // MOZ_QCMS
|
|
||||||
|
|
||||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
||||||
#define IS_LITTLE_ENDIAN
|
#define IS_LITTLE_ENDIAN
|
||||||
#elif BYTE_ORDER == BIG_ENDIAN
|
#elif BYTE_ORDER == BIG_ENDIAN
|
||||||
@ -38,7 +23,7 @@
|
|||||||
|
|
||||||
#if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || defined (_sgi) || defined (__sun) || defined (sun) || defined (__digital__)
|
#if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || defined (_sgi) || defined (__sun) || defined (sun) || defined (__digital__)
|
||||||
# include <inttypes.h>
|
# include <inttypes.h>
|
||||||
#elif defined (_MSC_VER)
|
#elif defined (_MSC_VER) && _MSC_VER < 1600
|
||||||
typedef __int8 int8_t;
|
typedef __int8 int8_t;
|
||||||
typedef unsigned __int8 uint8_t;
|
typedef unsigned __int8 uint8_t;
|
||||||
typedef __int16 int16_t;
|
typedef __int16 int16_t;
|
||||||
@ -59,8 +44,6 @@ typedef unsigned long uintptr_t;
|
|||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef qcms_bool bool;
|
typedef qcms_bool bool;
|
||||||
#define true 1
|
#define true 1
|
||||||
#define false 0
|
#define false 0
|
||||||
|
Loading…
Reference in New Issue
Block a user