aboutsummaryrefslogtreecommitdiff
path: root/databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h')
-rw-r--r--databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h b/databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h
deleted file mode 100644
index 8871fcc50821..000000000000
--- a/databases/mongodb60/files/aarch64/patch-src_third__party_mozjs_platform_aarch64_freebsd_include_js-config.h
+++ /dev/null
@@ -1,80 +0,0 @@
---- src/third_party/mozjs/platform/aarch64/freebsd/include/js-config.h.orig 2022-09-08 14:42:13 UTC
-+++ src/third_party/mozjs/platform/aarch64/freebsd/include/js-config.h
-@@ -0,0 +1,77 @@
-+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
-+ * vim: set ts=8 sw=4 et tw=78:
-+ *
-+ * This Source Code Form is subject to the terms of the Mozilla Public
-+ * License, v. 2.0. If a copy of the MPL was not distributed with this
-+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-+
-+#ifndef js_config_h
-+#define js_config_h
-+
-+/* Definitions set at build time that affect SpiderMonkey's public API.
-+ This header file is generated by the SpiderMonkey configure script,
-+ and installed along with jsapi.h. */
-+
-+/* Define to 1 if SpiderMonkey is in debug mode. */
-+/* #undef JS_DEBUG */
-+
-+/* Define to 1 if SpiderMonkey is in 64-bit mode. */
-+#define JS_64BIT 1
-+
-+/*
-+ * NB: We have a special case for rust-bindgen, which wants to be able to
-+ * generate both debug and release bindings on a single objdir.
-+ */
-+#ifdef JS_DEBUG
-+#if !defined(DEBUG) && !defined(RUST_BINDGEN)
-+# error "SpiderMonkey was configured with --enable-debug, so DEBUG must be defined when including this header"
-+# endif
-+#else
-+# if defined(DEBUG) && !defined(RUST_BINDGEN)
-+# error "SpiderMonkey was configured with --disable-debug, so DEBUG must be not defined when including this header"
-+# endif
-+#endif
-+
-+/* Define to 1 if SpiderMonkey should include ctypes support. */
-+/* #undef JS_HAS_CTYPES */
-+
-+/* Define to 1 if SpiderMonkey should include trace logging support. */
-+/* #undef JS_TRACE_LOGGING */
-+
-+/* Define to 1 if SpiderMonkey should include support for the Intl API. */
-+/* #undef JS_HAS_INTL_API */
-+
-+/* Define to 1 if SpiderMonkey should include a breakpoint function for
-+ * artificial OOMs. */
-+/* #undef JS_OOM_BREAKPOINT */
-+
-+/* Define to 1 if SpiderMonkey should support the ability to perform
-+ entirely too much GC. */
-+/* #undef JS_GC_ZEAL */
-+
-+/* Define to 1 if SpiderMonkey should use small chunks. */
-+/* #undef JS_GC_SMALL_CHUNK_SIZE */
-+
-+/* Define to 1 to perform extra assertions and heap poisoning. */
-+/* #undef JS_CRASH_DIAGNOSTICS */
-+
-+/* Define to 1 if SpiderMonkey is in NUNBOX32 mode. */
-+/* #undef JS_NUNBOX32 */
-+
-+/* Define to 1 if SpiderMonkey is in PUNBOX64 mode. */
-+#define JS_PUNBOX64 1
-+
-+/* Define to 1 if SpiderMonkey should support SmooshMonkey parser. */
-+/* #undef JS_ENABLE_SMOOSH */
-+
-+/* Experimental WASM features */
-+/* #undef ENABLE_WASM_EXCEPTIONS */
-+/* #undef ENABLE_WASM_FUNCTION_REFERENCES */
-+/* #undef ENABLE_WASM_GC */
-+#define ENABLE_WASM_SIMD 1
-+
-+/* MOZILLA JSAPI version number components */
-+#define MOZJS_MAJOR_VERSION 91
-+#define MOZJS_MINOR_VERSION 4
-+
-+#endif /* js_config_h */