1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/js-config.h.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,56 @@ 1.4 +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- 1.5 + * vim: set ts=8 sw=4 et tw=78: 1.6 + * 1.7 + * This Source Code Form is subject to the terms of the Mozilla Public 1.8 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.9 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.10 + 1.11 +#ifndef js_config_h 1.12 +#define js_config_h 1.13 + 1.14 +/* Definitions set at build time that affect SpiderMonkey's public API. 1.15 + This header file is generated by the SpiderMonkey configure script, 1.16 + and installed along with jsapi.h. */ 1.17 + 1.18 +/* Define to 1 if SpiderMonkey is in debug mode. */ 1.19 +#undef JS_DEBUG 1.20 + 1.21 +/* Define to 1 if SpiderMonkey should not use struct types in debug builds. */ 1.22 +#undef JS_NO_JSVAL_JSID_STRUCT_TYPES 1.23 + 1.24 +/* Define to 1 if SpiderMonkey should support multi-threaded clients. */ 1.25 +#undef JS_THREADSAFE 1.26 + 1.27 +/* Define to 1 if SpiderMonkey should include ctypes support. */ 1.28 +#undef JS_HAS_CTYPES 1.29 + 1.30 +/* Define to 1 if SpiderMonkey should support the ability to perform 1.31 + entirely too much GC. */ 1.32 +#undef JS_GC_ZEAL 1.33 + 1.34 +/* Define to 1 if SpiderMonkey should use Incremental GC. */ 1.35 +#undef JSGC_INCREMENTAL 1.36 + 1.37 +/* Define to 1 if SpiderMonkey should use Generational GC. */ 1.38 +#undef JSGC_GENERATIONAL 1.39 + 1.40 +/* Define to 1 if SpiderMonkey should use Exact Rooting. */ 1.41 +#undef JSGC_USE_EXACT_ROOTING 1.42 + 1.43 +/* Define to 1 if the <endian.h> header is present and 1.44 + useable. See jscpucfg.h. */ 1.45 +#undef JS_HAVE_ENDIAN_H 1.46 + 1.47 +/* Define to 1 if the <machine/endian.h> header is present and 1.48 + useable. See jscpucfg.h. */ 1.49 +#undef JS_HAVE_MACHINE_ENDIAN_H 1.50 + 1.51 +/* Define to 1 if the <sys/isa_defs.h> header is present and 1.52 + useable. See jscpucfg.h. */ 1.53 +#undef JS_HAVE_SYS_ISA_DEFS_H 1.54 + 1.55 +/* MOZILLA JSAPI version number components */ 1.56 +#undef MOZJS_MAJOR_VERSION 1.57 +#undef MOZJS_MINOR_VERSION 1.58 + 1.59 +#endif /* js_config_h */