1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * vim: set ts=8 sw=4 et tw=78:
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7
8#ifndef js_config_h
9#define js_config_h
10
11/* Definitions set at build time that affect SpiderMonkey's public API.
12   This header file is generated by the SpiderMonkey configure script,
13   and installed along with jsapi.h.  */
14
15/* Define to 1 if SpiderMonkey is in debug mode. */
16#undef JS_DEBUG
17
18/* Define to 1 if SpiderMonkey should not use struct types in debug builds. */
19#undef JS_NO_JSVAL_JSID_STRUCT_TYPES
20
21/* Define to 1 if SpiderMonkey should support multi-threaded clients.  */
22#undef JS_THREADSAFE
23
24/* Define to 1 if SpiderMonkey should include ctypes support.  */
25#undef JS_HAS_CTYPES
26
27/* Define to 1 if SpiderMonkey should support the ability to perform
28   entirely too much GC.  */
29#undef JS_GC_ZEAL
30
31/* Define to 1 if SpiderMonkey should use small chunks. */
32#undef JS_GC_SMALL_CHUNK_SIZE
33
34/* Define to 1 to perform extra assertions and heap poisoning. */
35#undef JS_CRASH_DIAGNOSTICS
36
37/* Define to 1 if the <endian.h> header is present and
38   useable.  See jscpucfg.h.  */
39#undef JS_HAVE_ENDIAN_H
40
41/* Define to 1 if the <machine/endian.h> header is present and
42   useable.  See jscpucfg.h.  */
43#undef JS_HAVE_MACHINE_ENDIAN_H
44
45/* Define to 1 if the <sys/isa_defs.h> header is present and
46   useable.  See jscpucfg.h.  */
47#undef JS_HAVE_SYS_ISA_DEFS_H
48
49/* Define to 1 if SpiderMonkey is in NUNBOX32 mode. */
50#undef JS_NUNBOX32
51
52/* Define to 1 if SpiderMonkey is in PUNBOX64 mode. */
53#undef JS_PUNBOX64
54
55/* MOZILLA JSAPI version number components */
56#undef MOZJS_MAJOR_VERSION
57#undef MOZJS_MINOR_VERSION
58
59#endif /* js_config_h */
60