43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
CONFIG_NO_STATUS
If defined, then most status output is omitted unless -v is specified.
(Some status output, such as most error messages, are still displayed.)
CONFIG_OMIT_INCLUDE
If defined, then the {include} macro is not implemented.
CONFIG_OMIT_SOUND
If defined, omit all sound capabilities (including music). (Even if it
is not defined, it can still be disabled at runtime.)
CONFIG_USING_32BIT_TIMESTAMPS
If defined, force use of 32-bit timestamps. (This is needed in order to
avoid compiler warnings on some systems, such as some versions of the
|
>
>
>
>
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
CONFIG_NO_STATUS
If defined, then most status output is omitted unless -v is specified.
(Some status output, such as most error messages, are still displayed.)
CONFIG_OMIT_INCLUDE
If defined, then the {include} macro is not implemented.
CONFIG_OMIT_MBCS
If defined, omit the capability of multibyte character encodings. (This
only affects displaying text, not the behaviour of the game.)
CONFIG_OMIT_SOUND
If defined, omit all sound capabilities (including music). (Even if it
is not defined, it can still be disabled at runtime.)
CONFIG_USING_32BIT_TIMESTAMPS
If defined, force use of 32-bit timestamps. (This is needed in order to
avoid compiler warnings on some systems, such as some versions of the
|
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
ability to import and export levels and pictures.
CONFIG_OMIT_GUI
If defined, omit the GUI. Autotest mode can still be used, and the
batch import/export works if CONFIG_OMIT_EDITOR is not defined. Any
other feature which does not require the GUI also can still be used.
CONFIG_OMIT_MBCS
If defined, omit the capability of multibyte character encodings. (This
only affects displaying text, not the behaviour of the game.)
CONFIG_OMIT_MUSIC
If defined, omit background music playback capabilities. (Even if this
is not defined, it can still be disabled at runtime.)
CONFIG_OMIT_PIPE
If defined, then any features that use popen are omitted. Some operating
systems may require this; otherwise, you should avoid using this.
|
<
<
<
<
|
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
ability to import and export levels and pictures.
CONFIG_OMIT_GUI
If defined, omit the GUI. Autotest mode can still be used, and the
batch import/export works if CONFIG_OMIT_EDITOR is not defined. Any
other feature which does not require the GUI also can still be used.
CONFIG_OMIT_MUSIC
If defined, omit background music playback capabilities. (Even if this
is not defined, it can still be disabled at runtime.)
CONFIG_OMIT_PIPE
If defined, then any features that use popen are omitted. Some operating
systems may require this; otherwise, you should avoid using this.
|