diff options
author | Florian Smeets <flo@FreeBSD.org> | 2013-01-10 22:29:23 +0000 |
---|---|---|
committer | Florian Smeets <flo@FreeBSD.org> | 2013-01-10 22:29:23 +0000 |
commit | e676e2910f592704af67424758ebd4cfdff9ebcd (patch) | |
tree | dd14b47bf2d53036668a1976cb68d74952705242 /www/firefox/files/patch-bug828003 | |
parent | - bump PORTREVISION since shlib version of gflags was changed (diff) |
- update www/firefox to 18.0
- update www/firefox-esr to 17.0.2
- update www/seamonkey to 2.15 (enigmail to 1.5.0)
- remove QT4 option to avoid confusion (it turned out to be too experimental)
In collaboration with: Jan Beich <jbeich@tormail.org>
Security: http://www.vuxml.org/freebsd/a4ed6632-5aa9-11e2-8fcb-c8600054b392.html
Diffstat (limited to 'www/firefox/files/patch-bug828003')
-rw-r--r-- | www/firefox/files/patch-bug828003 | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/www/firefox/files/patch-bug828003 b/www/firefox/files/patch-bug828003 new file mode 100644 index 000000000000..f30c317d81ee --- /dev/null +++ b/www/firefox/files/patch-bug828003 @@ -0,0 +1,36 @@ +--- 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 */ ++/* stdint.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 __OS2__ + #include <stdlib.h> +-#elif !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED) +-typedef unsigned long uintptr_t; +-#endif + #endif + + #else // MOZ_QCMS |