michael@0: /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- michael@0: * vim: set ts=8 sw=4 et tw=78: michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef js_config_h michael@0: #define js_config_h michael@0: michael@0: /* Definitions set at build time that affect SpiderMonkey's public API. michael@0: This header file is generated by the SpiderMonkey configure script, michael@0: and installed along with jsapi.h. */ michael@0: michael@0: /* Define to 1 if SpiderMonkey is in debug mode. */ michael@0: #undef JS_DEBUG michael@0: michael@0: /* Define to 1 if SpiderMonkey should not use struct types in debug builds. */ michael@0: #undef JS_NO_JSVAL_JSID_STRUCT_TYPES michael@0: michael@0: /* Define to 1 if SpiderMonkey should support multi-threaded clients. */ michael@0: #undef JS_THREADSAFE michael@0: michael@0: /* Define to 1 if SpiderMonkey should include ctypes support. */ michael@0: #undef JS_HAS_CTYPES michael@0: michael@0: /* Define to 1 if SpiderMonkey should support the ability to perform michael@0: entirely too much GC. */ michael@0: #undef JS_GC_ZEAL michael@0: michael@0: /* Define to 1 if SpiderMonkey should use Incremental GC. */ michael@0: #undef JSGC_INCREMENTAL michael@0: michael@0: /* Define to 1 if SpiderMonkey should use Generational GC. */ michael@0: #undef JSGC_GENERATIONAL michael@0: michael@0: /* Define to 1 if SpiderMonkey should use Exact Rooting. */ michael@0: #undef JSGC_USE_EXACT_ROOTING michael@0: michael@0: /* Define to 1 if the header is present and michael@0: useable. See jscpucfg.h. */ michael@0: #undef JS_HAVE_ENDIAN_H michael@0: michael@0: /* Define to 1 if the header is present and michael@0: useable. See jscpucfg.h. */ michael@0: #undef JS_HAVE_MACHINE_ENDIAN_H michael@0: michael@0: /* Define to 1 if the header is present and michael@0: useable. See jscpucfg.h. */ michael@0: #undef JS_HAVE_SYS_ISA_DEFS_H michael@0: michael@0: /* MOZILLA JSAPI version number components */ michael@0: #undef MOZJS_MAJOR_VERSION michael@0: #undef MOZJS_MINOR_VERSION michael@0: michael@0: #endif /* js_config_h */