mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
d39d92427c
- update firefox-esr, thunderbird, linux-firefox, linux-thunderbird to 17.0.3 - update linux-seamonkey to 2.16 - update nspr to 4.9.5 - update nss to 3.14.3 - add DuckDuckGo search plugin to firefox [1] - mark kompozer deprecated - clang fixes for www/libxul19 [2] Security: http://www.vuxml.org/freebsd/e3f0374a-7ad6-11e2-84cd-d43d7e0c7c02.html Submitted by: DuckDuckGo [1], dim [2] In collaboration with: Jan Beich <jbeich@tormail.org>
37 lines
1016 B
Plaintext
37 lines
1016 B
Plaintext
--- gfx/qcms/qcmstypes.h
|
|
+++ gfx/qcms/qcmstypes.h
|
|
@@ -7,30 +7,12 @@
|
|
#include "mozilla/StandardInteger.h"
|
|
|
|
/* prtypes.h defines IS_LITTLE_ENDIAN and IS_BIG ENDIAN */
|
|
+/* StandardInteger.h defines int*_t and uintptr_t */
|
|
|
|
-#if defined (__SVR4) && defined (__sun)
|
|
-/* int_types.h gets included somehow, so avoid redefining the types differently */
|
|
-#include <sys/int_types.h>
|
|
-#elif defined (_AIX)
|
|
+#if defined(_AIX)
|
|
#include <sys/types.h>
|
|
-#elif defined(__OpenBSD__)
|
|
-#include <inttypes.h>
|
|
-#elif !defined(ANDROID)
|
|
-typedef int8_t int8_t;
|
|
-typedef uint8_t uint8_t;
|
|
-typedef int16_t int16_t;
|
|
-typedef uint16_t uint16_t;
|
|
-typedef int32_t int32_t;
|
|
-typedef uint32_t uint32_t;
|
|
-typedef int64_t int64_t;
|
|
-typedef uint64_t uint64_t;
|
|
-
|
|
-#ifdef __OS2__
|
|
-/* OS/2's stdlib typdefs uintptr_t. So we'll just include that so we don't collide */
|
|
+#elif defined(__OS2__)
|
|
#include <stdlib.h>
|
|
-#elif !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED)
|
|
-typedef PRUptrdiff uintptr_t;
|
|
-#endif
|
|
#endif
|
|
|
|
#else // MOZ_QCMS
|