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