blob: 42b00ac8f520fd577b71b9977245b1fe2f9acd2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
$NetBSD: patch-bd,v 1.1 2013/05/23 13:12:13 ryoon Exp $
--- js/src/ctypes/CTypes.cpp.orig 2013-01-04 23:44:34.000000000 +0000
+++ js/src/ctypes/CTypes.cpp
@@ -5,6 +5,23 @@
#include "mozilla/FloatingPoint.h"
+#if defined(__NetBSD__)
+#include <stdint.h>
+/* XXX why do we have those funky __ #defines in stdint.h? */
+#warning this is a retarded workaround
+#define uint8_t uint8_t
+#define uint16_t uint16_t
+#define uint32_t uint32_t
+#define uint64_t uint64_t
+#define int8_t int8_t
+#define int16_t int16_t
+#define int32_t int32_t
+#define int64_t int64_t
+#define intptr_t intptr_t
+#define uintptr_t uintptr_t
+#define off_t off_t
+#endif
+
#include "CTypes.h"
#include "Library.h"
#include "jsnum.h"
|