- Decrease NFE_MAX_SCATTER to 32, should be enough
[dragonfly.git] / usr.bin / less / defines.h
blobf6eaff501ade244a859f5e7517cb0c8ec5b1ce5f
1 /* $DragonFly: src/usr.bin/less/defines.h,v 1.6 2007/11/16 22:32:32 pavalos Exp $ */
2 /* defines.h. Generated from defines.h.in by configure. */
3 /* defines.h.in. Generated from configure.ac by autoheader. */
6 /* Unix definition file for less. -*- C -*-
8 * This file has 3 sections:
9 * User preferences.
10 * Settings always true on Unix.
11 * Settings automatically determined by configure.
13 * * * * * * WARNING * * * * * *
14 * If you edit defines.h by hand, do "touch stamp-h" before you run make
15 * so config.status doesn't overwrite your changes.
18 /* User preferences. */
21 * SECURE is 1 if you wish to disable a bunch of features in order to
22 * be safe to run by unprivileged users.
23 * SECURE_COMPILE is set by the --with-secure configure option.
25 #define SECURE SECURE_COMPILE
28 * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
29 * (This is possible only if your system supplies the system() function.)
31 #define SHELL_ESCAPE (!SECURE)
34 * EXAMINE is 1 if you wish to allow examining files by name from within less.
36 #define EXAMINE (!SECURE)
39 * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
40 * to complete filenames at prompts.
42 #define TAB_COMPLETE_FILENAME (!SECURE)
45 * CMD_HISTORY is 1 if you wish to allow keys to cycle through
46 * previous commands at prompts.
48 #define CMD_HISTORY 1
51 * HILITE_SEARCH is 1 if you wish to have search targets to be
52 * displayed in standout mode.
54 #define HILITE_SEARCH 1
57 * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
58 * (This is possible only if your system supplies the system() function.)
59 * EDIT_PGM is the name of the (default) editor to be invoked.
61 #define EDITOR (!SECURE)
64 * TAGS is 1 if you wish to support tag files.
66 #define TAGS (!SECURE)
69 * USERFILE is 1 if you wish to allow a .less file to specify
70 * user-defined key bindings.
72 #define USERFILE (!SECURE)
75 * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
76 * This will generally work if your system provides the "popen" function
77 * and the "echo" shell command.
79 #define GLOB (!SECURE)
82 * PIPEC is 1 if you wish to have the "|" command
83 * which allows the user to pipe data into a shell command.
85 #define PIPEC (!SECURE)
88 * LOGFILE is 1 if you wish to allow the -l option (to create log files).
90 #define LOGFILE (!SECURE)
93 * GNU_OPTIONS is 1 if you wish to support the GNU-style command
94 * line options --help and --version.
96 #define GNU_OPTIONS 1
99 * ONLY_RETURN is 1 if you want RETURN to be the only input which
100 * will continue past an error message.
101 * Otherwise, any key will continue past an error message.
103 #define ONLY_RETURN 0
106 * LESSKEYFILE is the filename of the default lesskey output file
107 * (in the HOME directory).
108 * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
109 * DEF_LESSKEYINFILE is the filename of the default lesskey input
110 * (in the HOME directory).
111 * LESSHISTFILE is the filename of the history file
112 * (in the HOME directory).
114 #define LESSKEYFILE ".less"
115 #define LESSKEYFILE_SYS SYSDIR "/sysless"
116 #define DEF_LESSKEYINFILE ".lesskey"
117 #define LESSHISTFILE ".lesshst"
120 /* Settings always true on Unix. */
123 * Define MSDOS_COMPILER if compiling under Microsoft C.
125 #define MSDOS_COMPILER 0
128 * Pathname separator character.
130 #define PATHNAME_SEP "/"
133 * The value returned from tgetent on success.
134 * Some HP-UX systems return 0 on success.
136 #define TGETENT_OK 1
139 * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
141 #define HAVE_SYS_TYPES_H 1
144 * Define if you have the <sgstat.h> header file.
146 /* #undef HAVE_SGSTAT_H */
149 * HAVE_PERROR is 1 if your system has the perror() call.
150 * (Actually, if it has sys_errlist, sys_nerr and errno.)
152 #define HAVE_PERROR 1
155 * HAVE_TIME is 1 if your system has the time() call.
157 #define HAVE_TIME 1
160 * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
162 #define HAVE_SHELL 1
165 * Default shell metacharacters and meta-escape character.
167 #define DEF_METACHARS "; *?\t\n'\"()<>[]|&^`#\\$%=~"
168 #define DEF_METAESCAPE "\\"
171 * HAVE_DUP is 1 if your system has the dup() call.
173 #define HAVE_DUP 1
175 /* Define to 1 if you have the memcpy() function. */
176 #define HAVE_MEMCPY 1
178 /* Define to 1 if you have the strchr() function. */
179 #define HAVE_STRCHR 1
181 /* Define to 1 if you have the strstr() function. */
182 #define HAVE_STRSTR 1
185 * Sizes of various buffers.
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 */
197 /* Settings automatically determined by configure. */
200 /* Define EDIT_PGM to your editor. */
201 #define EDIT_PGM "vi"
203 /* Define HAVE_CONST if your compiler supports the "const" modifier. */
204 #define HAVE_CONST 1
206 /* Define to 1 if you have the <ctype.h> header file. */
207 #define HAVE_CTYPE_H 1
209 /* Define HAVE_ERRNO if you have the errno variable. */
210 #define HAVE_ERRNO 1
212 /* Define to 1 if you have the <errno.h> header file. */
213 #define HAVE_ERRNO_H 1
215 /* Define to 1 if you have the `fchmod' function. */
216 #define HAVE_FCHMOD 1
218 /* Define to 1 if you have the <fcntl.h> header file. */
219 #define HAVE_FCNTL_H 1
221 /* Define HAVE_FILENO if you have the fileno() macro. */
222 #define HAVE_FILENO 1
224 /* Define to 1 if you have the `fsync' function. */
225 #define HAVE_FSYNC 1
227 /* Define to 1 if you have the <inttypes.h> header file. */
228 #define HAVE_INTTYPES_H 1
230 /* Define to 1 if you have the `gen' library (-lgen). */
231 /* #undef HAVE_LIBGEN */
233 /* Define to 1 if you have the `intl' library (-lintl). */
234 /* #undef HAVE_LIBINTL */
236 /* Define to 1 if you have the `PW' library (-lPW). */
237 /* #undef HAVE_LIBPW */
239 /* Define to 1 if you have the <limits.h> header file. */
240 #define HAVE_LIMITS_H 1
242 /* Define HAVE_LOCALE if you have locale.h and setlocale. */
243 #define HAVE_LOCALE 1
245 /* Define to 1 if you have the <memory.h> header file. */
246 #define HAVE_MEMORY_H 1
248 /* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
249 #define HAVE_OSPEED 1
251 /* PCRE (Perl-compatible regular expression) library */
252 /* #undef HAVE_PCRE */
254 /* Define to 1 if you have the `popen' function. */
255 #define HAVE_POPEN 1
257 /* POSIX regcomp() and regex.h */
258 #define HAVE_POSIX_REGCOMP 1
260 /* System V regcmp() */
261 /* #undef HAVE_REGCMP */
263 /* */
264 /* #undef HAVE_REGEXEC2 */
266 /* BSD re_comp() */
267 /* #undef HAVE_RE_COMP */
269 /* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro. */
270 #define HAVE_SIGEMPTYSET 1
272 /* Define to 1 if you have the `sigprocmask' function. */
273 #define HAVE_SIGPROCMASK 1
275 /* Define to 1 if you have the `sigsetmask' function. */
276 #define HAVE_SIGSETMASK 1
278 /* Define to 1 if the system has the type `sigset_t'. */
279 #define HAVE_SIGSET_T 1
281 /* Define to 1 if you have the `snprintf' function. */
282 #define HAVE_SNPRINTF 1
284 /* Define to 1 if you have the `stat' function. */
285 #define HAVE_STAT 1
287 /* Define HAVE_STAT_INO if your struct stat has st_ino and st_dev. */
288 #define HAVE_STAT_INO 1
290 /* Define to 1 if you have the <stdint.h> header file. */
291 #define HAVE_STDINT_H 1
293 /* Define to 1 if you have the <stdio.h> header file. */
294 #define HAVE_STDIO_H 1
296 /* Define to 1 if you have the <stdlib.h> header file. */
297 #define HAVE_STDLIB_H 1
299 /* Define HAVE_STRERROR if you have the strerror() function. */
300 #define HAVE_STRERROR 1
302 /* Define to 1 if you have the <strings.h> header file. */
303 #define HAVE_STRINGS_H 1
305 /* Define to 1 if you have the <string.h> header file. */
306 #define HAVE_STRING_H 1
308 /* Define to 1 if you have the `system' function. */
309 #define HAVE_SYSTEM 1
311 /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable. */
312 #define HAVE_SYS_ERRLIST 1
314 /* Define to 1 if you have the <sys/ioctl.h> header file. */
315 #define HAVE_SYS_IOCTL_H 1
317 /* Define to 1 if you have the <sys/stat.h> header file. */
318 #define HAVE_SYS_STAT_H 1
320 /* Define to 1 if you have the <sys/stream.h> header file. */
321 /* #undef HAVE_SYS_STREAM_H */
323 /* Define to 1 if you have the <sys/types.h> header file. */
324 #define HAVE_SYS_TYPES_H 1
326 /* Define to 1 if you have the <termcap.h> header file. */
327 #define HAVE_TERMCAP_H 1
329 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr. */
330 #define HAVE_TERMIOS_FUNCS 1
332 /* Define to 1 if you have the <termios.h> header file. */
333 #define HAVE_TERMIOS_H 1
335 /* Define to 1 if you have the <termio.h> header file. */
336 /* #undef HAVE_TERMIO_H */
338 /* Define to 1 if you have the <time.h> header file. */
339 #define HAVE_TIME_H 1
341 /* Define HAVE_TIME_T if your system supports the "time_t" type. */
342 #define HAVE_TIME_T 1
344 /* Define to 1 if you have the <unistd.h> header file. */
345 #define HAVE_UNISTD_H 1
347 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */
348 #define HAVE_UPPER_LOWER 1
350 /* Henry Spencer V8 regcomp() and regexp.h */
351 /* #undef HAVE_V8_REGCOMP */
353 /* Define to 1 if you have the <values.h> header file. */
354 /* #undef HAVE_VALUES_H */
356 /* Define HAVE_VOID if your compiler supports the "void" type. */
357 #define HAVE_VOID 1
359 /* Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower. */
360 #define HAVE_WCTYPE 1
362 /* Define to 1 if you have the <wctype.h> header file. */
363 #define HAVE_WCTYPE_H 1
365 /* Define to 1 if you have the `_setjmp' function. */
366 #define HAVE__SETJMP 1
368 /* Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h.
370 /* #undef MUST_DEFINE_ERRNO */
372 /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in
373 termcap.h. */
374 /* #undef MUST_DEFINE_OSPEED */
376 /* pattern matching is supported, but without metacharacters. */
377 /* #undef NO_REGEX */
379 /* Define to the address where bug reports for this package should be sent. */
380 #define PACKAGE_BUGREPORT ""
382 /* Define to the full name of this package. */
383 #define PACKAGE_NAME "less"
385 /* Define to the full name and version of this package. */
386 #define PACKAGE_STRING "less 1"
388 /* Define to the one symbol short name of this package. */
389 #define PACKAGE_TARNAME "less"
391 /* Define to the version of this package. */
392 #define PACKAGE_VERSION "1"
394 /* Define as the return type of signal handlers (`int' or `void'). */
395 #define RETSIGTYPE void
397 /* Define SECURE_COMPILE=1 to build a secure version of less. */
398 #define SECURE_COMPILE 0
400 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
401 /* #undef STAT_MACROS_BROKEN */
403 /* Define to 1 if you have the ANSI C header files. */
404 #define STDC_HEADERS 1
406 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
407 #define TIME_WITH_SYS_TIME 1
409 /* Number of bits in a file offset, on hosts where this is settable. */
410 /* #undef _FILE_OFFSET_BITS */
412 /* Define for large files, on AIX-style hosts. */
413 /* #undef _LARGE_FILES */
415 /* Define to empty if `const' does not conform to ANSI C. */
416 /* #undef const */
418 /* Define to `long int' if <sys/types.h> does not define. */
419 /* #undef off_t */
421 /* Define to `unsigned int' if <sys/types.h> does not define. */
422 /* #undef size_t */