Updated README: Equal sign not required with `--mode` flag.
[sgk-go] / config.h.cmake
CommitLineData
7eeb782e
AT
1/* Ruleset. Default Japanese */
2#define CHINESE_RULES 0
3
4/* Allow resignation. Default enabled */
5#define RESIGNATION_ALLOWED 1
6
7/* Default level (strength). Up to 10 supported */
8#define DEFAULT_LEVEL 10
9
10/* Center oriented influence. Disabled by default. */
11#define COSMIC_GNUGO 0
12
13/* Owl Node Limit. 1000 default. */
14#define OWL_NODE_LIMIT 1000
15
16/* Semeai Variations. 500 default */
17#define SEMEAI_NODE_LIMIT 500
18
19/* Default hash table size in megabytes */
20#define DEFAULT_MEMORY -1
21
22/* Compile support for GTP communication over TCP/IP channel. */
23#undef ENABLE_SOCKET_SUPPORT
24
25/* GAIN/LOSS codes. Disabled by default. */
26#define EXPERIMENTAL_OWL_EXT 0
27
28/* Large Scale Captures. Disabled by default. */
29#define LARGE_SCALE 0
30
31/* Oracle. Default not enabled. */
32#define ORACLE 0
33
34/* Owl Threats. 0 standard. */
35#define OWL_THREATS 0
36
37/* Break-in module. Enabled by default. */
38#define USE_BREAK_IN 1
39
40/* Connection module. Default experimental. */
41#define EXPERIMENTAL_CONNECTIONS 1
42
43/* Connection module. Default standard. */
44#define ALTERNATE_CONNECTIONS 1
45
46/* Define as 1 to use the grid optimisation, or 2 to run it in self-test mode
47 */
48#define GRID_OPT 1
49
50/* Define to use ansi escape sequences for color debugging */
51#undef ANSI_COLOR
52
53/* Define to 1 if you have the <curses.h> header file. */
54#cmakedefine HAVE_CURSES_H 1
55
56/* Define to 1 if you have the `gettimeofday' function. */
57#cmakedefine HAVE_GETTIMEOFDAY 1
58
59/* Define to 1 if you have the <glib.h> header file. */
60#cmakedefine HAVE_GLIB_H 1
61
62/* Define to 1 if you have the `g_vsnprintf' function. */
63#cmakedefine HAVE_G_VSNPRINTF 1
64
65/* Define to 1 if you have the <ncurses/curses.h> header file. */
66#cmakedefine HAVE_NCURSES_CURSES_H 1
67
68/* Define to 1 if you have the <ncurses/term.h> header file. */
69#cmakedefine HAVE_NCURSES_TERM_H 1
70
71/* Define to 1 if you have the <sys/times.h> header file. */
72#cmakedefine HAVE_SYS_TIMES_H 1
73
74/* Define to 1 if you have the <sys/time.h> header file. */
75#cmakedefine HAVE_SYS_TIME_H 1
76
77/* Define to 1 if you have the <sys/types.h> header file. */
78#cmakedefine HAVE_SYS_TYPES_H 1
79
80/* Define to 1 if you have the <term.h> header file. */
81#cmakedefine HAVE_TERM_H 1
82
83/* Define to 1 if you have the <crtdbg.h> header file. */
84#cmakedefine HAVE_CRTDBG_H 1
85
86/* Define to 1 if you have the <winsock.h> and <io.h> header files. */
87#cmakedefine HAVE_WINSOCK_IO_H 1
88
89/* Define to 1 if you have the `times' function. */
90#cmakedefine HAVE_TIMES 1
91
92/* Define if your compiler supports transparent unions */
93#undef HAVE_TRANSPARENT_UNIONS
94
95/* Define to 1 if you have the <unistd.h> header file. */
96#cmakedefine HAVE_UNISTD_H 1
97
98/* Define to 1 if you have the `usleep' function. */
99#cmakedefine HAVE_USLEEP 1
100
101/* Define if #define can take a variable number of arguments */
102#undef HAVE_VARIADIC_DEFINE
103
104/* Define to 1 if you have the `vsnprintf' function. */
105#cmakedefine HAVE_VSNPRINTF 1
106
107/* Define to 1 if you have the `_vsnprintf' function. */
108#cmakedefine HAVE__VSNPRINTF 1
109
110/* Enable GNU Readline support */
111#undef READLINE
112
113/* The size of a `long', as computed by sizeof. */
114#cmakedefine SIZEOF_LONG ${SIZEOF_LONG}
115
116/* Define to 1 if termcap/terminfo is available. */
117#undef TERMINFO
118
119/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
120#cmakedefine TIME_WITH_SYS_TIME 1
121
122/* Define special valgrind macros. */
123#undef USE_VALGRIND
124
125/* Version number of package */
126#define VERSION "3.8"
127
128/* Define to empty if `const' does not conform to ANSI C. */
129#undef const
130
131${PRAGMAS}