2019-03-22 18:31:20 +00:00
|
|
|
/*
|
2020-01-12 16:50:37 +00:00
|
|
|
* Copyright (c) 2020 Calvin Rose
|
2019-03-22 18:31:20 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2019-06-20 20:33:28 +00:00
|
|
|
/* This is an example janetconf.h file. This will be usually generated
|
|
|
|
* by the build system. */
|
2019-03-22 18:31:20 +00:00
|
|
|
|
|
|
|
#ifndef JANETCONF_H
|
|
|
|
#define JANETCONF_H
|
|
|
|
|
2019-06-02 03:52:01 +00:00
|
|
|
#define JANET_VERSION_MAJOR 1
|
2020-04-05 02:50:27 +00:00
|
|
|
#define JANET_VERSION_MINOR 9
|
2020-05-11 02:06:52 +00:00
|
|
|
#define JANET_VERSION_PATCH 1
|
2020-05-12 14:16:45 +00:00
|
|
|
#define JANET_VERSION_EXTRA ""
|
|
|
|
#define JANET_VERSION "1.9.1"
|
2019-03-22 18:31:20 +00:00
|
|
|
|
|
|
|
/* #define JANET_BUILD "local" */
|
2019-05-28 17:59:12 +00:00
|
|
|
|
|
|
|
/* These settings all affect linking, so use cautiously. */
|
2019-03-22 18:31:20 +00:00
|
|
|
/* #define JANET_SINGLE_THREADED */
|
|
|
|
/* #define JANET_NO_DYNAMIC_MODULES */
|
2019-05-28 17:59:12 +00:00
|
|
|
/* #define JANET_NO_NANBOX */
|
|
|
|
/* #define JANET_API __attribute__((visibility ("default"))) */
|
|
|
|
|
2019-06-20 20:33:28 +00:00
|
|
|
/* These settings should be specified before amalgamation is
|
|
|
|
* built. */
|
|
|
|
/* #define JANET_NO_DOCSTRINGS */
|
|
|
|
/* #define JANET_NO_SOURCEMAPS */
|
|
|
|
/* #define JANET_REDUCED_OS */
|
2020-05-09 17:00:01 +00:00
|
|
|
/* #define JANET_NO_PROCESSES */
|
2019-03-22 18:31:20 +00:00
|
|
|
/* #define JANET_NO_ASSEMBLER */
|
|
|
|
/* #define JANET_NO_PEG */
|
2020-02-02 02:39:54 +00:00
|
|
|
/* #define JANET_NO_NET */
|
2019-03-22 18:31:20 +00:00
|
|
|
/* #define JANET_NO_TYPED_ARRAY */
|
|
|
|
/* #define JANET_NO_INT_TYPES */
|
2020-05-09 17:00:01 +00:00
|
|
|
|
|
|
|
/* Other settings */
|
2020-01-17 03:06:03 +00:00
|
|
|
/* #define JANET_NO_PRF */
|
2020-05-09 17:00:01 +00:00
|
|
|
/* #define JANET_NO_UTC_MKTIME */
|
2020-05-11 04:07:54 +00:00
|
|
|
/* #define JANET_NO_REALPATH */
|
2020-05-09 17:00:01 +00:00
|
|
|
/* #define JANET_NO_SYMLINKS */
|
2020-05-11 04:07:54 +00:00
|
|
|
/* #define JANET_NO_UMASK */
|
2019-03-22 18:31:20 +00:00
|
|
|
/* #define JANET_OUT_OF_MEMORY do { printf("janet out of memory\n"); exit(1); } while (0) */
|
2020-05-09 17:00:01 +00:00
|
|
|
/* #define JANET_EXIT(msg) do { printf("C assert failed executing janet: %s\n", msg); exit(1); } while (0) */
|
|
|
|
/* #define JANET_TOP_LEVEL_SIGNAL(msg) call_my_function((msg), stderr) */
|
2019-03-22 18:31:20 +00:00
|
|
|
/* #define JANET_RECURSION_GUARD 1024 */
|
|
|
|
/* #define JANET_MAX_PROTO_DEPTH 200 */
|
|
|
|
/* #define JANET_MAX_MACRO_EXPAND 200 */
|
|
|
|
/* #define JANET_STACK_MAX 16384 */
|
2019-08-18 15:00:04 +00:00
|
|
|
/* #define JANET_OS_NAME my-custom-os */
|
|
|
|
/* #define JANET_ARCH_NAME pdp-8 */
|
2019-03-22 18:31:20 +00:00
|
|
|
|
|
|
|
#endif /* end of include guard: JANETCONF_H */
|