]> granicus.if.org Git - postgresql/blob - src/include/config.h.in
Add a check for strerr, and add in D'Arcy's strerror() code in case not
[postgresql] / src / include / config.h.in
1
2
3 /* the purpose of this file is to reduce the use of #ifdef's through
4  * the code base by those porting the software, and to facilitate the
5  * eventual use of autoconf to build the server 
6  */
7
8 #ifndef CONFIG_H
9 #define CONFIG_H
10
11 #define BLCKSZ  8192
12
13 /* 
14  * The following is set using configure.  
15  */
16
17 /* Set to 1 if you have <termios.h> */
18 #undef HAVE_TERMIOS_H
19
20 /* Set to 1 if you have <limits.h> */
21 #undef HAVE_LIMITS_H
22
23 /* Set to 1 if  you have <values.h> */
24 #undef HAVE_VALUES_H
25
26 /* Set to 1 if  you have <sys/select.h> */
27 #undef HAVE_SYS_SELECT_H
28
29 /* Set to 1 if you have <readline.h> */
30 #undef HAVE_READLINE_H
31
32 /* Set to 1 if you have <history.h> */
33 #undef HAVE_HISTORY
34
35 /* Set to 1 if you have <dld.h> */
36 #undef HAVE_DLD_H
37
38 /* Set to 1 if you have isinf() */
39 #undef HAVE_ISINF
40
41 /* Set to 1 if you have tzset() */
42 #undef HAVE_TZSET
43
44 /* Set to 1 if you have int timezone */
45 #undef HAVE_INT_TIMEZONE
46
47 /* Set to 1 if you have cbrt() */
48 #undef HAVE_CBRT
49
50 /* Set to 1 if you have inet_aton() */
51 #undef HAVE_INET_ATON
52
53 /* Set to 1 if you have strerror() */
54 #undef HAVE_STRERROR
55
56 /* Set to 1 if you have rint() */
57 #undef HAVE_RINT 
58
59 /* Set to 1 if you have memmove() */
60 #undef HAVE_MEMMOVE
61
62 /* Set to 1 if you have sigsetjmp() */
63 #undef HAVE_SIGSETJMP
64
65 /* Set to 1 if you have kill() */
66 #undef HAVE_KILL
67
68 /* Set to 1 if you have vfork() */
69 #undef HAVE_VFORK
70
71 /* Set to 1 if you have sysconf() */
72 #undef HAVE_SYSCONF
73
74 /* Set to 1 if you have getrusage() */
75 #undef HAVE_GETRUSAGE
76
77 /* Set to 1 if you have waitpid() */
78 #undef HAVE_WAITPID
79
80 /* Set to 1 if you have setsid() */
81 #undef HAVE_SETSID
82
83 /* Set to 1 if you have sigprocmask() */
84 #undef HAVE_SIGPROCMASK
85
86 /* Set to 1 if you have strdup() */
87 #undef HAVE_STRDUP
88
89 /* Set to 1 if you have libreadline.a */
90 #undef HAVE_LIBREADLINE
91
92 /* Set to 1 if you have libhistory.a */
93 #undef HAVE_LIBHISTORY
94
95 /* Set to 1 if you have union semun */
96 #undef HAVE_UNION_SEMUN
97
98 /*
99  * Code below this point should not require changes
100  */
101
102 #include "os.h"
103
104 /* This patch changes the behavior of aclcheck for groups. Currently an user
105  * can access a table only if he has the required permission for ALL the groups
106  * defined for that table. With my patch he can access a table if he has the
107  * permission for ONE of the groups, which seems to me a more useful thing.
108  * 
109  * Used in: src/backend/tcop/aclchk.c
110  * Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
111  */
112 #define ACLGROUP_PATCH
113
114
115 /*
116  * The following is used as the arg list for signal handlers.  Any ports
117  * that take something other than an int argument should change this in
118  * the port specific makefile.  Note that variable names are required
119  * because it is used in both the prototypes as well as the definitions.
120  * Note also the long name.  We expect that this won't collide with
121  * other names causing compiler warnings.
122  */ 
123
124 #ifndef       SIGNAL_ARGS
125 #  define SIGNAL_ARGS int postgres_signal_arg
126 #endif
127
128 /* 
129  * DEF_PGPORT is the TCP port number on which the Postmaster listens by
130  * default.  This can be overriden by command options, environment variables,
131  * and the postconfig hook.
132  */ 
133
134 #define DEF_PGPORT "5432"
135
136 /*
137  * If you do not plan to use Host based authentication,
138  * comment out the following line
139  */
140 #define HBA
141
142 /*
143  * On architectures for which we have not implemented spinlocks (or
144  * cannot do so), we use System V semaphores.  We also use them for
145  * long locks.  For some reason union semun is never defined in the
146  * System V header files so we must do it ourselves.
147  */
148
149 /*  Debug and various "defines" that should be documented */
150
151 /* found in function aclparse() in src/backend/utils/adt/acl.c */
152 /* #define ACLDEBUG */
153
154 /* found in src/backend/utils/adt/arrayfuncs.c
155    code seems broken without it, Bruce Momjian */
156 /* #define LOARRAY */
157
158 /* This is the time, in seconds, at which a given backend server
159  * will wait on a lock before deciding to abort the transaction
160  * (this is what we do in lieu of deadlock detection).
161  *
162  * Low numbers are not recommended as they will tend to cause
163  * false aborts if many transactions are long-lived.
164  */
165 #define DEADLOCK_TIMEOUT 60
166
167 /*
168  * This flag enables the use of idexes in plans generated for function
169  * executions which normally are always executed with sequential scans.
170  */
171 #define INDEXSCAN_PATCH 
172
173 /* #define DATEDEBUG */
174
175 /*
176  * Define this if you want to use date constants with a short year
177  * like '01/05/96'.
178  */
179 /* #define USE_SHORT_YEAR */
180
181 /*
182  * defining unsafe floats's will make float4 and float8
183  * ops faster at the cost of safety, of course!        
184  */
185 /* #define UNSAFE_FLOATS */
186
187 /*
188  * There is a bug in the function executor. The backend crashes while trying to
189  * execute an sql function containing an utility command (create, notify, ...).
190  * The bug is part in the planner, which returns a number of plans different
191  * than the number of commands if there are utility commands in the query, and
192  * in part in the function executor which assumes that all commands are normal
193  * query commands and causes a SIGSEGV trying to execute commands without plan.
194  */
195 #define FUNC_UTIL_PATCH
196
197 /*
198  * Define this if you want to retrieve arrays attributes as Tcl lists instead
199  * of postgres C-like arrays, for example {{"a1" "a2"} {"b1" "b2"}} instead 
200  * of {{"a1","a2"},{"b1","b2"}}.
201  */
202 #define TCL_ARRAYS
203
204 /*
205  * The comparison routines for text and char data type give incorrect results
206  * if the input data contains characters greater than 127.  As these routines
207  * perform the comparison using signed char variables all character codes
208  * greater than 127 are interpreted as less than 0.  These codes are used to
209  * encode the iso8859 char sets.  Define this flag to correct the problem.
210  */
211 #define UNSIGNED_CHAR_TEXT
212
213 /*
214  * The following flag allows limiting the number of rows returned by a query.
215  * You will need the loadable module utils.c to use this feature.
216  */
217 #define QUERY_LIMIT
218
219 /*
220  * The following flag allows copying tables from files with number of columns
221  * different than the number of attributes setting missing attributes to NULL
222  * and ignoring extra columns.  This also avoids the shift of the attributes
223  * of the rest of the file if one line has a wrong column count.
224  */
225 #define COPY_PATCH
226
227 /*
228  * User locks are handled totally on the application side as long term
229  * cooperative locks which extend beyond the normal transaction boundaries.
230  * Their purpose is to indicate to an application that someone is `working'
231  * on an item.  Define this flag to enable user locks.  You will need the
232  * loadable module user-locks.c to use this feature.
233  */
234 #define USER_LOCKS
235
236 /* Debug #defines */
237 /* #define IPORTAL_DEBUG  */
238 /* #define HEAPDEBUGALL  */
239 /* #define ISTRATDEBUG  */
240 /* #define FASTBUILD_DEBUG */
241 #define RTDEBUG 
242 #define GISTDEBUG 
243 /* #define PURGEDEBUG */
244 /* #define DEBUG_RECIPE */
245 /* #define ASYNC_DEBUG */
246 /* #define COPY_DEBUG */
247 /* #define VACUUM_DEBUG */
248 /* #define NBTINSERT_PATCH_DEBUG */
249
250
251 /* The following don't have any apparent purpose, but are in the
252  * code.  someday, will take them out altogether, but for now, 
253  * document them here
254  */
255 /* #define OMIT_PARTIAL_INDEX */
256 /* #define NO_BUFFERISVALID   */
257 /* #define NO_SECURITY        */
258 /* #define TIOGA              */
259 /* #define OLD_REWRITE        */
260 /* #define NOTYET             */
261
262 /* Genetic Query Optimization (GEQO):
263  * 
264  * The GEQO module in PostgreSQL is intended for the solution of the
265  * query optimization problem by means of a Genetic Algorithm (GA).
266  * It allows the handling of large JOIN queries through non-exhaustive
267  * search.
268  * For further information see README.GEQO <utesch@aut.tu-freiberg.de>.
269  */
270 /*#define GEQO */ /* backend/optimizer/path/allpaths.c */
271
272 /*
273  * Define this if you want psql to _always_ ask for a username and a password
274  * for password authentication.
275  */
276 /* #define PSQL_ALWAYS_GET_PASSWORDS */
277
278 /* Undocumented "features"? */
279 #define FASTBUILD /* access/nbtree/nbtsort.c */
280
281 #endif /* CONFIG_H */