Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 444780 | Differences between
and this patch

Collapse All | Expand All

(-)media/webrtc/trunk/src/typedefs.h.orig (+49 lines)
Lines 48-53 Link Here
48
#define WEBRTC_ARCH_32_BITS
48
#define WEBRTC_ARCH_32_BITS
49
#define WEBRTC_ARCH_LITTLE_ENDIAN
49
#define WEBRTC_ARCH_LITTLE_ENDIAN
50
#define WEBRTC_LITTLE_ENDIAN
50
#define WEBRTC_LITTLE_ENDIAN
51
#elif defined(__powerpc64__)
52
#define WEBRTC_ARCH_PPC64 1
53
#define WEBRTC_ARCH_64_BITS 1
54
#define WEBRTC_ARCH_BIG_ENDIAN
55
#define WEBRTC_BIG_ENDIAN
56
#elif defined(__ppc__) || defined(__powerpc__)
57
#define WEBRTC_ARCH_PPC 1
58
#define WEBRTC_ARCH_32_BITS 1
59
#define WEBRTC_ARCH_BIG_ENDIAN
60
#define WEBRTC_BIG_ENDIAN
61
#elif defined(__sparc64__)
62
#define WEBRTC_ARCH_SPARC 1
63
#define WEBRTC_ARCH_64_BITS 1
64
#define WEBRTC_ARCH_BIG_ENDIAN
65
#define WEBRTC_BIG_ENDIAN
66
#elif defined(__sparc__)
67
#define WEBRTC_ARCH_SPARC 1
68
#define WEBRTC_ARCH_32_BITS 1
69
#define WEBRTC_ARCH_BIG_ENDIAN
70
#define WEBRTC_BIG_ENDIAN
71
#elif defined(__mips__)
72
#define WEBRTC_ARCH_MIPS 1
73
#if defined(_ABI64) && _MIPS_SIM == _ABI64
74
#define WEBRTC_ARCH_64_BITS 1
75
#else
76
#define WEBRTC_ARCH_32_BITS 1
77
#endif
78
#if defined(__MIPSEB__)
79
#define WEBRTC_ARCH_BIG_ENDIAN
80
#define WEBRTC_BIG_ENDIAN
81
#else
82
#define WEBRTC_ARCH_LITTLE_ENDIAN
83
#define WEBRTC_LITTLE_ENDIAN
84
#endif
85
#elif defined(__hppa__)
86
#define WEBRTC_ARCH_HPPA 1
87
#define WEBRTC_ARCH_32_BITS 1
88
#define WEBRTC_ARCH_BIG_ENDIAN
89
#define WEBRTC_BIG_ENDIAN
90
#elif defined(__ia64__)
91
#define WEBRTC_ARCH_IA64 1
92
#define WEBRTC_ARCH_64_BITS 1
93
#define WEBRTC_ARCH_LITTLE_ENDIAN
94
#define WEBRTC_LITTLE_ENDIAN
95
#elif defined(__s390x__)
96
#define WEBRTC_ARCH_S390X 1
97
#define WEBRTC_ARCH_64_BITS 1
98
#define WEBRTC_ARCH_BIG_ENDIAN
99
#define WEBRTC_BIG_ENDIAN
51
#else
100
#else
52
#error Please add support for your architecture in typedefs.h
101
#error Please add support for your architecture in typedefs.h
53
#endif
102
#endif

Return to bug 444780