summaryrefslogtreecommitdiff
path: root/mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h')
-rw-r--r--mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h b/mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h
deleted file mode 100644
index c63b8ee03b4..00000000000
--- a/mail/thunderbird10/patches/patch-mozilla_js_src_jscpucfg.h
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-mozilla_js_src_jscpucfg.h,v 1.1.1.1 2012/03/15 09:45:29 ryoon Exp $
-
---- mozilla/js/src/jscpucfg.h.orig 2012-02-16 10:25:04.000000000 +0000
-+++ mozilla/js/src/jscpucfg.h
-@@ -77,6 +77,21 @@
- #define IS_BIG_ENDIAN 1
- #endif
-
-+#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__MirBSD__) || defined(__DragonFly__)
-+#include <sys/endian.h>
-+
-+#if defined(_BYTE_ORDER)
-+#if _BYTE_ORDER == _LITTLE_ENDIAN
-+#define IS_LITTLE_ENDIAN 1
-+#undef IS_BIG_ENDIAN
-+#elif _BYTE_ORDER == _BIG_ENDIAN
-+#undef IS_LITTLE_ENDIAN
-+#define IS_BIG_ENDIAN 1
-+#endif
-+#else /* !defined(_BYTE_ORDER) */
-+#error "sys/endian.h does not define _BYTE_ORDER. Cannot determine endianness."
-+#endif
-+
- #elif defined(JS_HAVE_ENDIAN_H)
- #include <endian.h>
-