js/src/js-config.h.in

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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

mercurial