summaryrefslogtreecommitdiff
path: root/www/seamonkey/patches/patch-at
blob: cd795a37c9fa7617816f08390fdf7f52b6479583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-at,v 1.9 2012/03/19 10:35:58 ryoon Exp $

Avoid silly redefinitions of standard types on NetBSD.

--- mozilla/gfx/qcms/qcmstypes.h.orig	2012-03-13 05:32:34.000000000 +0000
+++ mozilla/gfx/qcms/qcmstypes.h
@@ -10,6 +10,8 @@
 #if defined (__SVR4) && defined (__sun)
 /* int_types.h gets included somehow, so avoid redefining the types differently */
 #include <sys/int_types.h>
+#elif defined(__NetBSD__) || defined(__DragonFly__)
+#include <stdint.h>
 #elif defined (_AIX)
 #include <sys/types.h>
 #elif defined(__OpenBSD__)