summaryrefslogtreecommitdiffstats
path: root/js/src/js-config.h.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/js-config.h.in
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/js-config.h.in')
-rw-r--r--js/src/js-config.h.in65
1 files changed, 65 insertions, 0 deletions
diff --git a/js/src/js-config.h.in b/js/src/js-config.h.in
new file mode 100644
index 0000000000..b54f1bc2cb
--- /dev/null
+++ b/js/src/js-config.h.in
@@ -0,0 +1,65 @@
+/* -*- 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
+
+/*
+ * 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. */
+#undef JS_PUNBOX64
+
+/* MOZILLA JSAPI version number components */
+#undef MOZJS_MAJOR_VERSION
+#undef MOZJS_MINOR_VERSION
+
+#endif /* js_config_h */