~ubuntu-branches/ubuntu/natty/freecell-solver/natty

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2009-03-15 23:42:21 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090315234221-sx95hxyfyfgi0pja
Tags: 2.16.0-1
* Imported Upstream version 2.16.0 (closes: #518440)
* cmake is the new buildsystem

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* config.h.in.  Generated from configure.ac by autoheader.  */
2
1
/*
3
2
    config.h - Configuration file for Freecell Solver
4
3
 
8
7
    (It is not copyrighted).
9
8
*/
10
9
 
11
 
#ifndef __CONFIG_H
12
 
#define __CONFIG_H
 
10
#ifndef FC_SOLVE__CONFIG_H
 
11
#define FC_SOLVE__CONFIG_H
13
12
 
14
13
#ifdef __cplusplus
15
14
extern "C" {
16
15
#endif
17
16
 
18
 
#undef DEBUG_STATES
19
 
#undef COMPACT_STATES
20
 
#undef INDIRECT_STACK_STATES
 
17
#cmakedefine DEBUG_STATES
 
18
#cmakedefine COMPACT_STATES
 
19
#cmakedefine INDIRECT_STACK_STATES
21
20
 
22
 
#undef CARD_DEBUG_PRES
 
21
#cmakedefine CARD_DEBUG_PRES
23
22
 
24
23
/*
25
24
 * Define this macro if the C compiler supports the keyword inline or
26
25
 * a similar keyword that was found by Autoconf (and defined as inline).
27
26
 * */
28
 
#undef HAVE_C_INLINE
 
27
#cmakedefine HAVE_C_INLINE
29
28
 
30
29
 
31
30
/*
44
43
    The amount the pack pointers array grows by. Shouldn't be too high
45
44
    because it doesn't happen too often.
46
45
*/
47
 
#define IA_STATE_PACKS_GROW_BY 32
 
46
#cmakedefine IA_STATE_PACKS_GROW_BY 32
48
47
 
49
48
/*
50
49
 * The maximal number of Freecells. For efficiency's sake it should be a
51
50
 * multiple of 4.
52
51
 * */
53
52
 
54
 
#define MAX_NUM_FREECELLS 4
 
53
#define MAX_NUM_FREECELLS ${MAX_NUM_FREECELLS}
55
54
 
56
55
/*
57
56
 * The maximal number of Stacks. For efficiency's sake it should be a
58
57
 * multiple of 4.
59
58
 * */
60
59
 
61
 
#define MAX_NUM_STACKS 10
 
60
#define MAX_NUM_STACKS ${MAX_NUM_STACKS}
62
61
/*
63
62
 * The maximal number of initial cards that can be found in a stack.
64
63
 * */
65
 
#define MAX_NUM_INITIAL_CARDS_IN_A_STACK 8
 
64
#define MAX_NUM_INITIAL_CARDS_IN_A_STACK ${MAX_NUM_INITIAL_CARDS_IN_A_STACK}
66
65
 
67
 
#define MAX_NUM_DECKS 2
 
66
#define MAX_NUM_DECKS ${MAX_NUM_DECKS}
68
67
 
69
68
 
70
69
#define FCS_STATE_STORAGE_INDIRECT 0
83
82
#define FCS_STACK_STORAGE_GLIB_TREE 4
84
83
#define FCS_STACK_STORAGE_GLIB_HASH 5
85
84
 
86
 
#undef FCS_STATE_STORAGE
87
 
#undef FCS_STACK_STORAGE
 
85
#define FCS_STATE_STORAGE ${FCS_STATE_STORAGE}
 
86
#define FCS_STACK_STORAGE ${FCS_STACK_STORAGE}
88
87
 
89
88
#ifdef __cplusplus
90
89
}
92
91
 
93
92
#endif
94
93
 
95
 
/* Define to 1 if you have the <dlfcn.h> header file. */
96
 
#undef HAVE_DLFCN_H
97
 
 
98
 
/* Define to 1 if you have the <inttypes.h> header file. */
99
 
#undef HAVE_INTTYPES_H
100
 
 
101
94
/* Define to 1 if you have the `avl' library (-lavl). */
102
95
#undef HAVE_LIBAVL
103
96
 
105
98
#undef HAVE_LIBGLIB
106
99
 
107
100
/* Define to 1 if you have the `m' library (-lm). */
108
 
#undef HAVE_LIBM
 
101
#cmakedefine HAVE_LIBM
109
102
 
110
103
/* Define to 1 if you have the `redblack' library (-lredblack). */
111
104
#undef HAVE_LIBREDBLACK
112
105
 
113
 
/* Define to 1 if you have the <limits.h> header file. */
114
 
#undef HAVE_LIMITS_H
115
 
 
116
 
/* Define to 1 if you have the <memory.h> header file. */
117
 
#undef HAVE_MEMORY_H
118
 
 
119
 
/* Define to 1 if you have the <stdint.h> header file. */
120
 
#undef HAVE_STDINT_H
121
 
 
122
 
/* Define to 1 if you have the <stdlib.h> header file. */
123
 
#undef HAVE_STDLIB_H
124
 
 
125
 
/* Define to 1 if you have the `strdup' function. */
126
 
#undef HAVE_STRDUP
127
 
 
128
 
/* Define to 1 if you have the <strings.h> header file. */
129
 
#undef HAVE_STRINGS_H
130
 
 
131
 
/* Define to 1 if you have the <string.h> header file. */
132
 
#undef HAVE_STRING_H
133
 
 
134
 
/* Define to 1 if you have the <sys/stat.h> header file. */
135
 
#undef HAVE_SYS_STAT_H
136
 
 
137
 
/* Define to 1 if you have the <sys/types.h> header file. */
138
 
#undef HAVE_SYS_TYPES_H
139
 
 
140
 
/* Define to 1 if you have the <unistd.h> header file. */
141
 
#undef HAVE_UNISTD_H
142
 
 
143
106
/* Name of package */
144
 
#undef PACKAGE
 
107
#define PACKAGE "${PACKAGE}"
145
108
 
146
109
/* Define to the address where bug reports for this package should be sent. */
147
 
#undef PACKAGE_BUGREPORT
 
110
#define PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
148
111
 
149
112
/* Define to the full name of this package. */
150
 
#undef PACKAGE_NAME
 
113
#define PACKAGE_NAME "${PACKAGE_NAME}"
151
114
 
152
115
/* Define to the full name and version of this package. */
153
 
#undef PACKAGE_STRING
 
116
#define PACKAGE_STRING "${PACKAGE_STRING}"
154
117
 
155
118
/* Define to the one symbol short name of this package. */
156
 
#undef PACKAGE_TARNAME
 
119
#define PACKAGE_TARNAME "${PACKAGE_TARNAME}"
157
120
 
158
121
/* Define to the version of this package. */
159
 
#undef PACKAGE_VERSION
160
 
 
161
 
/* Define as the return type of signal handlers (`int' or `void'). */
162
 
#undef RETSIGTYPE
163
 
 
164
 
/* Define to 1 if you have the ANSI C header files. */
165
 
#undef STDC_HEADERS
 
122
#define PACKAGE_VERSION "${PACKAGE_VERSION}"
166
123
 
167
124
/* Version number of package */
168
 
#undef VERSION
169
 
 
170
 
/* Define to empty if `const' does not conform to ANSI C. */
171
 
#undef const
 
125
#define VERSION "${VERSION}"
172
126
 
173
127
/* Define to `__inline__' or `__inline' if that's what the C compiler
174
128
   calls it, or to nothing if 'inline' is not supported under any name.  */
176
130
#undef inline
177
131
#endif
178
132
 
179
 
/* Define to `unsigned' if <sys/types.h> does not define. */
180
 
#undef size_t