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