xref: /dragonfly/usr.bin/less/defines.h (revision ffe53622)
1 /* defines.h.  Generated from defines.h.in by configure.  */
2 /* defines.h.in.  Generated from configure.ac by autoheader.  */
3 
4 
5 /* Unix definition file for less.  -*- C -*-
6  *
7  * This file has 3 sections:
8  * User preferences.
9  * Settings always true on Unix.
10  * Settings automatically determined by configure.
11  *
12  * * * * * *  WARNING  * * * * * *
13  * If you edit defines.h by hand, do "touch stamp-h" before you run make
14  * so config.status doesn't overwrite your changes.
15  */
16 
17 /* User preferences.  */
18 
19 /*
20  * SECURE is 1 if you wish to disable a bunch of features in order to
21  * be safe to run by unprivileged users.
22  * SECURE_COMPILE is set by the --with-secure configure option.
23  */
24 #define	SECURE		SECURE_COMPILE
25 
26 /*
27  * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
28  * (This is possible only if your system supplies the system() function.)
29  */
30 #define	SHELL_ESCAPE	(!SECURE)
31 
32 /*
33  * EXAMINE is 1 if you wish to allow examining files by name from within less.
34  */
35 #define	EXAMINE		(!SECURE)
36 
37 /*
38  * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
39  * to complete filenames at prompts.
40  */
41 #define	TAB_COMPLETE_FILENAME	(!SECURE)
42 
43 /*
44  * CMD_HISTORY is 1 if you wish to allow keys to cycle through
45  * previous commands at prompts.
46  */
47 #define	CMD_HISTORY	1
48 
49 /*
50  * HILITE_SEARCH is 1 if you wish to have search targets to be
51  * displayed in standout mode.
52  */
53 #define	HILITE_SEARCH	1
54 
55 /*
56  * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
57  * (This is possible only if your system supplies the system() function.)
58  * EDIT_PGM is the name of the (default) editor to be invoked.
59  */
60 #define	EDITOR		(!SECURE)
61 
62 /*
63  * TAGS is 1 if you wish to support tag files.
64  */
65 #define	TAGS		(!SECURE)
66 
67 /*
68  * USERFILE is 1 if you wish to allow a .less file to specify
69  * user-defined key bindings.
70  */
71 #define	USERFILE	(!SECURE)
72 
73 /*
74  * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
75  * This will generally work if your system provides the "popen" function
76  * and the "echo" shell command.
77  */
78 #define	GLOB		(!SECURE)
79 
80 /*
81  * PIPEC is 1 if you wish to have the "|" command
82  * which allows the user to pipe data into a shell command.
83  */
84 #define	PIPEC		(!SECURE)
85 
86 /*
87  * LOGFILE is 1 if you wish to allow the -l option (to create log files).
88  */
89 #define	LOGFILE		(!SECURE)
90 
91 /*
92  * GNU_OPTIONS is 1 if you wish to support the GNU-style command
93  * line options --help and --version.
94  */
95 #define	GNU_OPTIONS	1
96 
97 /*
98  * ONLY_RETURN is 1 if you want RETURN to be the only input which
99  * will continue past an error message.
100  * Otherwise, any key will continue past an error message.
101  */
102 #define	ONLY_RETURN	0
103 
104 /*
105  * LESSKEYFILE is the filename of the default lesskey output file
106  * (in the HOME directory).
107  * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
108  * DEF_LESSKEYINFILE is the filename of the default lesskey input
109  * (in the HOME directory).
110  * LESSHISTFILE is the filename of the history file
111  * (in the HOME directory).
112  */
113 #define	LESSKEYFILE		".less"
114 #define	LESSKEYFILE_SYS		SYSDIR "/sysless"
115 #define	DEF_LESSKEYINFILE	".lesskey"
116 #define LESSHISTFILE		".lesshst"
117 
118 
119 /* Settings always true on Unix.  */
120 
121 /*
122  * Define MSDOS_COMPILER if compiling under Microsoft C.
123  */
124 #define	MSDOS_COMPILER	0
125 
126 /*
127  * Pathname separator character.
128  */
129 #define	PATHNAME_SEP	"/"
130 
131 /*
132  * The value returned from tgetent on success.
133  * Some HP-UX systems return 0 on success.
134  */
135 #define TGETENT_OK  1
136 
137 /*
138  * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
139  */
140 #define HAVE_SYS_TYPES_H 1
141 
142 /*
143  * Define if you have the <sgstat.h> header file.
144  */
145 /* #undef HAVE_SGSTAT_H */
146 
147 /*
148  * HAVE_PERROR is 1 if your system has the perror() call.
149  * (Actually, if it has sys_errlist, sys_nerr and errno.)
150  */
151 #define	HAVE_PERROR	1
152 
153 /*
154  * HAVE_TIME is 1 if your system has the time() call.
155  */
156 #define	HAVE_TIME	1
157 
158 /*
159  * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
160  */
161 #define	HAVE_SHELL	1
162 
163 /*
164  * Default shell metacharacters and meta-escape character.
165  */
166 #define	DEF_METACHARS	"; *?\t\n'\"()<>[]|&^`#\\$%=~"
167 #define	DEF_METAESCAPE	"\\"
168 
169 /*
170  * HAVE_DUP is 1 if your system has the dup() call.
171  */
172 #define	HAVE_DUP	1
173 
174 /* Define to 1 if you have the memcpy() function. */
175 #define HAVE_MEMCPY 1
176 
177 /* Define to 1 if you have the strchr() function. */
178 #define HAVE_STRCHR 1
179 
180 /* Define to 1 if you have the strstr() function. */
181 #define HAVE_STRSTR 1
182 
183 /*
184  * Sizes of various buffers.
185  */
186 #if 0 /* old sizes for small memory machines */
187 #define	CMDBUF_SIZE	512	/* Buffer for multichar commands */
188 #define	UNGOT_SIZE	100	/* Max chars to unget() */
189 #define	LINEBUF_SIZE	1024	/* Max size of line in input file */
190 #define	OUTBUF_SIZE	1024	/* Output buffer */
191 #define	PROMPT_SIZE	200	/* Max size of prompt string */
192 #define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
193 #define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
194 #define	TAGLINE_SIZE	512	/* Max size of line in tags file */
195 #define	TABSTOP_MAX	32	/* Max number of custom tab stops */
196 #else /* more reasonable sizes for modern machines */
197 #define	CMDBUF_SIZE	2048	/* Buffer for multichar commands */
198 #define	UNGOT_SIZE	200	/* Max chars to unget() */
199 #define	LINEBUF_SIZE	1024	/* Initial max size of line in input file */
200 #define	OUTBUF_SIZE	1024	/* Output buffer */
201 #define	PROMPT_SIZE	2048	/* Max size of prompt string */
202 #define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
203 #define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
204 #define	TAGLINE_SIZE	1024	/* Max size of line in tags file */
205 #define	TABSTOP_MAX	128	/* Max number of custom tab stops */
206 #endif
207 
208 /* Settings automatically determined by configure.  */
209 
210 
211 /* Define EDIT_PGM to your editor. */
212 #define EDIT_PGM "vi"
213 
214 /* Define HAVE_CONST if your compiler supports the "const" modifier. */
215 #define HAVE_CONST 1
216 
217 /* Define to 1 if you have the <ctype.h> header file. */
218 #define HAVE_CTYPE_H 1
219 
220 /* Define HAVE_ERRNO if you have the errno variable. */
221 #define HAVE_ERRNO 1
222 
223 /* Define to 1 if you have the <errno.h> header file. */
224 #define HAVE_ERRNO_H 1
225 
226 /* Define to 1 if you have the `fchmod' function. */
227 #define HAVE_FCHMOD 1
228 
229 /* Define to 1 if you have the <fcntl.h> header file. */
230 #define HAVE_FCNTL_H 1
231 
232 /* Define HAVE_FILENO if you have the fileno() macro. */
233 #define HAVE_FILENO 1
234 
235 /* Define HAVE_FLOAT if your compiler supports the "double" type. */
236 #define HAVE_FLOAT 1
237 
238 /* Define to 1 if you have the `fsync' function. */
239 #define HAVE_FSYNC 1
240 
241 /* GNU regex library */
242 /* #undef HAVE_GNU_REGEX */
243 
244 /* Define to 1 if you have the <inttypes.h> header file. */
245 #define HAVE_INTTYPES_H 1
246 
247 /* Define to 1 if you have the <limits.h> header file. */
248 #define HAVE_LIMITS_H 1
249 
250 /* Define HAVE_LOCALE if you have locale.h and setlocale. */
251 #define HAVE_LOCALE 1
252 
253 /* Define to 1 if you have the <memory.h> header file. */
254 #define HAVE_MEMORY_H 1
255 
256 /* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
257 #define HAVE_OSPEED 1
258 
259 /* PCRE (Perl-compatible regular expression) library */
260 /* #undef HAVE_PCRE */
261 
262 /* Define to 1 if you have the `popen' function. */
263 #define HAVE_POPEN 1
264 
265 /* POSIX regcomp() and regex.h */
266 #define HAVE_POSIX_REGCOMP 1
267 
268 /* System V regcmp() */
269 /* #undef HAVE_REGCMP */
270 
271 /* */
272 /* #undef HAVE_REGEXEC2 */
273 
274 /* BSD re_comp() */
275 /* #undef HAVE_RE_COMP */
276 
277 /* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro. */
278 #define HAVE_SIGEMPTYSET 1
279 
280 /* Define to 1 if you have the `sigprocmask' function. */
281 #define HAVE_SIGPROCMASK 1
282 
283 /* Define to 1 if you have the `sigsetmask' function. */
284 #define HAVE_SIGSETMASK 1
285 
286 /* Define to 1 if the system has the type `sigset_t'. */
287 #define HAVE_SIGSET_T 1
288 
289 /* Define to 1 if you have the `snprintf' function. */
290 #define HAVE_SNPRINTF 1
291 
292 /* Define to 1 if you have the `stat' function. */
293 #define HAVE_STAT 1
294 
295 /* Define HAVE_STAT_INO if your struct stat has st_ino and st_dev. */
296 #define HAVE_STAT_INO 1
297 
298 /* Define to 1 if you have the <stdint.h> header file. */
299 #define HAVE_STDINT_H 1
300 
301 /* Define to 1 if you have the <stdio.h> header file. */
302 #define HAVE_STDIO_H 1
303 
304 /* Define to 1 if you have the <stdlib.h> header file. */
305 #define HAVE_STDLIB_H 1
306 
307 /* Define HAVE_STRERROR if you have the strerror() function. */
308 #define HAVE_STRERROR 1
309 
310 /* Define to 1 if you have the <strings.h> header file. */
311 #define HAVE_STRINGS_H 1
312 
313 /* Define to 1 if you have the <string.h> header file. */
314 #define HAVE_STRING_H 1
315 
316 /* Define to 1 if you have the `system' function. */
317 #define HAVE_SYSTEM 1
318 
319 /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable. */
320 #define HAVE_SYS_ERRLIST 1
321 
322 /* Define to 1 if you have the <sys/ioctl.h> header file. */
323 #define HAVE_SYS_IOCTL_H 1
324 
325 /* Define to 1 if you have the <sys/stat.h> header file. */
326 #define HAVE_SYS_STAT_H 1
327 
328 /* Define to 1 if you have the <sys/stream.h> header file. */
329 /* #undef HAVE_SYS_STREAM_H */
330 
331 /* Define to 1 if you have the <sys/types.h> header file. */
332 #define HAVE_SYS_TYPES_H 1
333 
334 /* Define to 1 if you have the <termcap.h> header file. */
335 #define HAVE_TERMCAP_H 1
336 
337 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr. */
338 #define HAVE_TERMIOS_FUNCS 1
339 
340 /* Define to 1 if you have the <termios.h> header file. */
341 #define HAVE_TERMIOS_H 1
342 
343 /* Define to 1 if you have the <termio.h> header file. */
344 /* #undef HAVE_TERMIO_H */
345 
346 /* Define to 1 if you have the <time.h> header file. */
347 #define HAVE_TIME_H 1
348 
349 /* Define HAVE_TIME_T if your system supports the "time_t" type. */
350 #define HAVE_TIME_T 1
351 
352 /* Define to 1 if you have the <unistd.h> header file. */
353 #define HAVE_UNISTD_H 1
354 
355 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */
356 #define HAVE_UPPER_LOWER 1
357 
358 /* Henry Spencer V8 regcomp() and regexp.h */
359 /* #undef HAVE_V8_REGCOMP */
360 
361 /* Define to 1 if you have the <values.h> header file. */
362 /* #undef HAVE_VALUES_H */
363 
364 /* Define HAVE_VOID if your compiler supports the "void" type. */
365 #define HAVE_VOID 1
366 
367 /* Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower. */
368 #define HAVE_WCTYPE 1
369 
370 /* Define to 1 if you have the <wctype.h> header file. */
371 #define HAVE_WCTYPE_H 1
372 
373 /* Define to 1 if you have the `_setjmp' function. */
374 #define HAVE__SETJMP 1
375 
376 /* Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h.
377    */
378 /* #undef MUST_DEFINE_ERRNO */
379 
380 /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in
381    termcap.h. */
382 /* #undef MUST_DEFINE_OSPEED */
383 
384 /* pattern matching is supported, but without metacharacters. */
385 /* #undef NO_REGEX */
386 
387 /* Define to the address where bug reports for this package should be sent. */
388 #define PACKAGE_BUGREPORT ""
389 
390 /* Define to the full name of this package. */
391 #define PACKAGE_NAME "less"
392 
393 /* Define to the full name and version of this package. */
394 #define PACKAGE_STRING "less 1"
395 
396 /* Define to the one symbol short name of this package. */
397 #define PACKAGE_TARNAME "less"
398 
399 /* Define to the home page for this package. */
400 #define PACKAGE_URL ""
401 
402 /* Define to the version of this package. */
403 #define PACKAGE_VERSION "1"
404 
405 /* Define as the return type of signal handlers (`int' or `void'). */
406 #define RETSIGTYPE void
407 
408 /* Define SECURE_COMPILE=1 to build a secure version of less. */
409 #define SECURE_COMPILE 0
410 
411 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
412 /* #undef STAT_MACROS_BROKEN */
413 
414 /* Define to 1 if you have the ANSI C header files. */
415 #define STDC_HEADERS 1
416 
417 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
418 #define TIME_WITH_SYS_TIME 1
419 
420 /* Number of bits in a file offset, on hosts where this is settable. */
421 /* #undef _FILE_OFFSET_BITS */
422 
423 /* Define for large files, on AIX-style hosts. */
424 /* #undef _LARGE_FILES */
425 
426 /* Define to empty if `const' does not conform to ANSI C. */
427 /* #undef const */
428 
429 /* Define to `long int' if <sys/types.h> does not define. */
430 /* #undef off_t */
431 
432 /* Define to `unsigned int' if <sys/types.h> does not define. */
433 /* #undef size_t */
434