forked from openshadowgate/shadowgate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal_options
89 lines (81 loc) · 1.94 KB
/
local_options
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* options.h: defines for the compile-time configuration of the MudOS driver
*/
#ifndef _OPTIONS_H_
#define _OPTIONS_H_
#define SYSMALLOC
#undef SMALLOC
#undef BSDMALLOC
#undef MMALLOC
#undef WRAPPEDMALLOC
#define DEBUGMALLOC
#undef SBRK_OK
#undef DO_MSTATS
#undef DEBUGMALLOC_EXTENSIONS
#undef CHECK_MEMORY
#define HAS_STATUS_TYPE
#undef IGNORE_STRICT_PRAGMA
#undef STRICT_TYPE_CHECKING
#define CAST_CALL_OTHERS
#undef NO_LIGHT
#undef NO_ADD_ACTION
#undef NO_SNOOP
#undef NO_ENVIRONMENT
#define OLD_ED
#undef SENSIBLE_MODIFIERS
#undef CUSTOM_CRYPT
#define COMPAT_32
#define STRING_STATS
#define ARRAY_STATS
#undef LOG_CATCHES
#define ARGUMENTS_IN_TRACEBACK
#define LOCALS_IN_TRACEBACK
#define CONFIG_FILE_DIR "./"
#define DEFAULT_PRAGMAS PRAGMA_ERROR_CONTEXT + PRAGMA_OPTIMIZE
#define SAVE_EXTENSION ".o"
#undef PRIVS
#undef RESTRICTED_ED
#undef NO_SHADOWS
#undef PROFILE_FUNCTIONS
#undef NO_BUFFER_TYPE
#undef ARRAY_RESERVED_WORD
#undef REF_RESERVED_WORD
#define PACKAGE_CONTRIB
#define PACKAGE_OPS
#define PACKAGE_CORE
#define PACKAGE_CONTRIB
#define PACKAGE_DEVELOP
#define PACKAGE_MATH
#define PACKAGE_MUDLIB_STATS
#define PACKAGE_SOCKETS
#define PACKAGE_PARSER
#define PACKAGE_EXTERNAL
#define PACKAGE_DB
#ifdef PACKAGE_DB
#undef USE_MSQL
#undef MSQL
#undef USE_POSTGRES
#define USE_SQLITE3 1
#define DEFAULT_DB USE_SQLITE3
#endif
#define PACKAGE_UIDS
#define AUTO_SETEUID
#define AUTO_TRUST_BACKBONE
#undef USE_32BIT_ADDRESSES
#define LARGEST_PRINTABLE_STRING 8192
#define SMALL_STRING_SIZE 100
#define LARGE_STRING_SIZE 1000
#define COMMAND_BUF_SIZE 2000
#define MAX_SAVE_SVALUE_DEPTH 100
#define CFG_MAX_LOCAL_VARIABLES 100
#define CFG_EVALUATOR_STACK_SIZE 300000
#define CFG_COMPILER_STACK_SIZE 600000
#define CFG_MAX_CALL_DEPTH 250
#define CFG_LIVING_HASH_SIZE 256
#undef HAVE_ZLIB
#undef PACKAGE_COMPRESS
#define SAVE_GZ_EXTENSION ".o.gz"
#undef USE_ICONV
#define PARSE_DEBUG
#define FLUFFOS
#endif