xref: /freebsd/usr.bin/less/defines.h (revision 72bc07dc83bc565baf3887d3252d7aecc10a7f69)
16f7d2d90SPaul Saab /* $FreeBSD$ */
255e19c81STim J. Robbins /* defines.h.  Generated by configure.  */
355e19c81STim J. Robbins /* defines.h.in.  Generated from configure.ac by autoheader.  */
455e19c81STim J. Robbins 
555e19c81STim J. Robbins 
66f7d2d90SPaul Saab /* Unix definition file for less.  -*- C -*-
76f7d2d90SPaul Saab  *
86f7d2d90SPaul Saab  * This file has 3 sections:
96f7d2d90SPaul Saab  * User preferences.
106f7d2d90SPaul Saab  * Settings always true on Unix.
116f7d2d90SPaul Saab  * Settings automatically determined by configure.
126f7d2d90SPaul Saab  *
136f7d2d90SPaul Saab  * * * * * *  WARNING  * * * * * *
146f7d2d90SPaul Saab  * If you edit defines.h by hand, do "touch stamp-h" before you run make
156f7d2d90SPaul Saab  * so config.status doesn't overwrite your changes.
166f7d2d90SPaul Saab  */
1755e19c81STim J. Robbins 
186f7d2d90SPaul Saab /* User preferences.  */
196f7d2d90SPaul Saab 
206f7d2d90SPaul Saab /*
216f7d2d90SPaul Saab  * SECURE is 1 if you wish to disable a bunch of features in order to
226f7d2d90SPaul Saab  * be safe to run by unprivileged users.
2372bc07dcSXin LI  * SECURE_COMPILE is set by the --with-secure configure option.
246f7d2d90SPaul Saab  */
2572bc07dcSXin LI #define	SECURE		SECURE_COMPILE
266f7d2d90SPaul Saab 
276f7d2d90SPaul Saab /*
286f7d2d90SPaul Saab  * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
296f7d2d90SPaul Saab  * (This is possible only if your system supplies the system() function.)
306f7d2d90SPaul Saab  */
316f7d2d90SPaul Saab #define	SHELL_ESCAPE	(!SECURE)
326f7d2d90SPaul Saab 
336f7d2d90SPaul Saab /*
346f7d2d90SPaul Saab  * EXAMINE is 1 if you wish to allow examining files by name from within less.
356f7d2d90SPaul Saab  */
366f7d2d90SPaul Saab #define	EXAMINE		(!SECURE)
376f7d2d90SPaul Saab 
386f7d2d90SPaul Saab /*
396f7d2d90SPaul Saab  * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
406f7d2d90SPaul Saab  * to complete filenames at prompts.
416f7d2d90SPaul Saab  */
426f7d2d90SPaul Saab #define	TAB_COMPLETE_FILENAME	(!SECURE)
436f7d2d90SPaul Saab 
446f7d2d90SPaul Saab /*
456f7d2d90SPaul Saab  * CMD_HISTORY is 1 if you wish to allow keys to cycle through
466f7d2d90SPaul Saab  * previous commands at prompts.
476f7d2d90SPaul Saab  */
486f7d2d90SPaul Saab #define	CMD_HISTORY	1
496f7d2d90SPaul Saab 
506f7d2d90SPaul Saab /*
516f7d2d90SPaul Saab  * HILITE_SEARCH is 1 if you wish to have search targets to be
526f7d2d90SPaul Saab  * displayed in standout mode.
536f7d2d90SPaul Saab  */
546f7d2d90SPaul Saab #define	HILITE_SEARCH	1
556f7d2d90SPaul Saab 
566f7d2d90SPaul Saab /*
576f7d2d90SPaul Saab  * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
586f7d2d90SPaul Saab  * (This is possible only if your system supplies the system() function.)
596f7d2d90SPaul Saab  * EDIT_PGM is the name of the (default) editor to be invoked.
606f7d2d90SPaul Saab  */
616f7d2d90SPaul Saab #define	EDITOR		(!SECURE)
626f7d2d90SPaul Saab 
636f7d2d90SPaul Saab /*
646f7d2d90SPaul Saab  * TAGS is 1 if you wish to support tag files.
656f7d2d90SPaul Saab  */
666f7d2d90SPaul Saab #define	TAGS		(!SECURE)
676f7d2d90SPaul Saab 
686f7d2d90SPaul Saab /*
696f7d2d90SPaul Saab  * USERFILE is 1 if you wish to allow a .less file to specify
706f7d2d90SPaul Saab  * user-defined key bindings.
716f7d2d90SPaul Saab  */
726f7d2d90SPaul Saab #define	USERFILE	(!SECURE)
736f7d2d90SPaul Saab 
746f7d2d90SPaul Saab /*
756f7d2d90SPaul Saab  * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
766f7d2d90SPaul Saab  * This will generally work if your system provides the "popen" function
776f7d2d90SPaul Saab  * and the "echo" shell command.
786f7d2d90SPaul Saab  */
796f7d2d90SPaul Saab #define	GLOB		(!SECURE)
806f7d2d90SPaul Saab 
816f7d2d90SPaul Saab /*
826f7d2d90SPaul Saab  * PIPEC is 1 if you wish to have the "|" command
836f7d2d90SPaul Saab  * which allows the user to pipe data into a shell command.
846f7d2d90SPaul Saab  */
856f7d2d90SPaul Saab #define	PIPEC		(!SECURE)
866f7d2d90SPaul Saab 
876f7d2d90SPaul Saab /*
886f7d2d90SPaul Saab  * LOGFILE is 1 if you wish to allow the -l option (to create log files).
896f7d2d90SPaul Saab  */
906f7d2d90SPaul Saab #define	LOGFILE		(!SECURE)
916f7d2d90SPaul Saab 
926f7d2d90SPaul Saab /*
936f7d2d90SPaul Saab  * GNU_OPTIONS is 1 if you wish to support the GNU-style command
946f7d2d90SPaul Saab  * line options --help and --version.
956f7d2d90SPaul Saab  */
966f7d2d90SPaul Saab #define	GNU_OPTIONS	1
976f7d2d90SPaul Saab 
986f7d2d90SPaul Saab /*
996f7d2d90SPaul Saab  * ONLY_RETURN is 1 if you want RETURN to be the only input which
1006f7d2d90SPaul Saab  * will continue past an error message.
1016f7d2d90SPaul Saab  * Otherwise, any key will continue past an error message.
1026f7d2d90SPaul Saab  */
1036f7d2d90SPaul Saab #define	ONLY_RETURN	0
1046f7d2d90SPaul Saab 
1056f7d2d90SPaul Saab /*
1066f7d2d90SPaul Saab  * LESSKEYFILE is the filename of the default lesskey output file
1076f7d2d90SPaul Saab  * (in the HOME directory).
1086f7d2d90SPaul Saab  * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
1096f7d2d90SPaul Saab  * DEF_LESSKEYINFILE is the filename of the default lesskey input
1106f7d2d90SPaul Saab  * (in the HOME directory).
11172bc07dcSXin LI  * LESSHISTFILE is the filename of the history file
11272bc07dcSXin LI  * (in the HOME directory).
1136f7d2d90SPaul Saab  */
1146f7d2d90SPaul Saab #define	LESSKEYFILE		".less"
1156c488bf2STim J. Robbins #define	LESSKEYFILE_SYS		"/etc/lesskey"
1166f7d2d90SPaul Saab #define	DEF_LESSKEYINFILE	".lesskey"
11772bc07dcSXin LI #define LESSHISTFILE		".lesshst"
1186f7d2d90SPaul Saab 
11955e19c81STim J. Robbins 
1206f7d2d90SPaul Saab /* Settings always true on Unix.  */
1216f7d2d90SPaul Saab 
1226f7d2d90SPaul Saab /*
1236f7d2d90SPaul Saab  * Define MSDOS_COMPILER if compiling under Microsoft C.
1246f7d2d90SPaul Saab  */
1256f7d2d90SPaul Saab #define	MSDOS_COMPILER	0
1266f7d2d90SPaul Saab 
1276f7d2d90SPaul Saab /*
1286f7d2d90SPaul Saab  * Pathname separator character.
1296f7d2d90SPaul Saab  */
1306f7d2d90SPaul Saab #define	PATHNAME_SEP	"/"
1316f7d2d90SPaul Saab 
1326f7d2d90SPaul Saab /*
1336f7d2d90SPaul Saab  * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
1346f7d2d90SPaul Saab  */
1356f7d2d90SPaul Saab #define HAVE_SYS_TYPES_H 1
1366f7d2d90SPaul Saab 
1376f7d2d90SPaul Saab /*
1386f7d2d90SPaul Saab  * Define if you have the <sgstat.h> header file.
1396f7d2d90SPaul Saab  */
1406f7d2d90SPaul Saab /* #undef HAVE_SGSTAT_H */
1416f7d2d90SPaul Saab 
1426f7d2d90SPaul Saab /*
1436f7d2d90SPaul Saab  * HAVE_PERROR is 1 if your system has the perror() call.
1446f7d2d90SPaul Saab  * (Actually, if it has sys_errlist, sys_nerr and errno.)
1456f7d2d90SPaul Saab  */
1466f7d2d90SPaul Saab #define	HAVE_PERROR	1
1476f7d2d90SPaul Saab 
1486f7d2d90SPaul Saab /*
1496f7d2d90SPaul Saab  * HAVE_TIME is 1 if your system has the time() call.
1506f7d2d90SPaul Saab  */
1516f7d2d90SPaul Saab #define	HAVE_TIME	1
1526f7d2d90SPaul Saab 
1536f7d2d90SPaul Saab /*
1546f7d2d90SPaul Saab  * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
1556f7d2d90SPaul Saab  */
1566f7d2d90SPaul Saab #define	HAVE_SHELL	1
1576f7d2d90SPaul Saab 
1586f7d2d90SPaul Saab /*
1596f7d2d90SPaul Saab  * Default shell metacharacters and meta-escape character.
1606f7d2d90SPaul Saab  */
16172bc07dcSXin LI #define	DEF_METACHARS	"; *?\t\n'\"()<>[]|&^`#\\"
1626f7d2d90SPaul Saab #define	DEF_METAESCAPE	"\\"
1636f7d2d90SPaul Saab 
1646f7d2d90SPaul Saab /*
1656f7d2d90SPaul Saab  * HAVE_DUP is 1 if your system has the dup() call.
1666f7d2d90SPaul Saab  */
1676f7d2d90SPaul Saab #define	HAVE_DUP	1
1686f7d2d90SPaul Saab 
1696f7d2d90SPaul Saab /*
1706f7d2d90SPaul Saab  * Sizes of various buffers.
1716f7d2d90SPaul Saab  */
1726f7d2d90SPaul Saab #define	CMDBUF_SIZE	512	/* Buffer for multichar commands */
1736f7d2d90SPaul Saab #define	UNGOT_SIZE	100	/* Max chars to unget() */
1746f7d2d90SPaul Saab #define	LINEBUF_SIZE	1024	/* Max size of line in input file */
1756f7d2d90SPaul Saab #define	OUTBUF_SIZE	1024	/* Output buffer */
1766f7d2d90SPaul Saab #define	PROMPT_SIZE	200	/* Max size of prompt string */
1776f7d2d90SPaul Saab #define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
1786f7d2d90SPaul Saab #define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
1796f7d2d90SPaul Saab #define	TAGLINE_SIZE	512	/* Max size of line in tags file */
180fb05bfbaSPaul Saab #define	TABSTOP_MAX	32	/* Max number of custom tab stops */
18155e19c81STim J. Robbins 
1826f7d2d90SPaul Saab /* Settings automatically determined by configure.  */
1836f7d2d90SPaul Saab 
184d4673883SPaul Saab 
1856f7d2d90SPaul Saab /* Define EDIT_PGM to your editor. */
1866f7d2d90SPaul Saab #define EDIT_PGM "vi"
1876f7d2d90SPaul Saab 
18855e19c81STim J. Robbins /* Define HAVE_CONST if your compiler supports the "const" modifier. */
18955e19c81STim J. Robbins #define HAVE_CONST 1
1906f7d2d90SPaul Saab 
19155e19c81STim J. Robbins /* Define to 1 if you have the <ctype.h> header file. */
1926f7d2d90SPaul Saab #define HAVE_CTYPE_H 1
1936f7d2d90SPaul Saab 
19455e19c81STim J. Robbins /* Define HAVE_ERRNO if you have the errno variable. */
19555e19c81STim J. Robbins #define HAVE_ERRNO 1
19655e19c81STim J. Robbins 
19755e19c81STim J. Robbins /* Define to 1 if you have the <errno.h> header file. */
1986f7d2d90SPaul Saab #define HAVE_ERRNO_H 1
1996f7d2d90SPaul Saab 
20072bc07dcSXin LI /* Define to 1 if you have the `fchmod' function. */
20172bc07dcSXin LI #define HAVE_FCHMOD 1
20272bc07dcSXin LI 
20355e19c81STim J. Robbins /* Define to 1 if you have the <fcntl.h> header file. */
2046f7d2d90SPaul Saab #define HAVE_FCNTL_H 1
2056f7d2d90SPaul Saab 
20655e19c81STim J. Robbins /* Define HAVE_FILENO if you have the fileno() macro. */
20755e19c81STim J. Robbins #define HAVE_FILENO 1
2086f7d2d90SPaul Saab 
20955e19c81STim J. Robbins /* Define to 1 if you have the `fsync' function. */
21055e19c81STim J. Robbins #define HAVE_FSYNC 1
2116f7d2d90SPaul Saab 
21255e19c81STim J. Robbins /* Define to 1 if you have the <inttypes.h> header file. */
21355e19c81STim J. Robbins #define HAVE_INTTYPES_H 1
2146f7d2d90SPaul Saab 
21555e19c81STim J. Robbins /* Define to 1 if you have the `gen' library (-lgen). */
2166f7d2d90SPaul Saab /* #undef HAVE_LIBGEN */
2176f7d2d90SPaul Saab 
21855e19c81STim J. Robbins /* Define to 1 if you have the `intl' library (-lintl). */
2196f7d2d90SPaul Saab /* #undef HAVE_LIBINTL */
22055e19c81STim J. Robbins 
22155e19c81STim J. Robbins /* Define to 1 if you have the `PW' library (-lPW). */
22255e19c81STim J. Robbins /* #undef HAVE_LIBPW */
22355e19c81STim J. Robbins 
22455e19c81STim J. Robbins /* Define to 1 if you have the <limits.h> header file. */
22555e19c81STim J. Robbins #define HAVE_LIMITS_H 1
22655e19c81STim J. Robbins 
22755e19c81STim J. Robbins /* Define HAVE_LOCALE if you have locale.h and setlocale. */
22855e19c81STim J. Robbins #define HAVE_LOCALE 1
22955e19c81STim J. Robbins 
23055e19c81STim J. Robbins /* Define to 1 if you have the `memcpy' function. */
23155e19c81STim J. Robbins #define HAVE_MEMCPY 1
23255e19c81STim J. Robbins 
23355e19c81STim J. Robbins /* Define to 1 if you have the <memory.h> header file. */
23455e19c81STim J. Robbins #define HAVE_MEMORY_H 1
23555e19c81STim J. Robbins 
23655e19c81STim J. Robbins /* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
23755e19c81STim J. Robbins #define HAVE_OSPEED 1
23855e19c81STim J. Robbins 
23955e19c81STim J. Robbins /* PCRE (Perl-compatible regular expression) library */
24055e19c81STim J. Robbins /* #undef HAVE_PCRE */
24155e19c81STim J. Robbins 
24255e19c81STim J. Robbins /* Define to 1 if you have the `popen' function. */
24355e19c81STim J. Robbins #define HAVE_POPEN 1
24455e19c81STim J. Robbins 
24555e19c81STim J. Robbins /* POSIX regcomp() and regex.h */
24655e19c81STim J. Robbins #define HAVE_POSIX_REGCOMP 1
24755e19c81STim J. Robbins 
24855e19c81STim J. Robbins /* System V regcmp() */
24955e19c81STim J. Robbins /* #undef HAVE_REGCMP */
25055e19c81STim J. Robbins 
25155e19c81STim J. Robbins /* */
25255e19c81STim J. Robbins /* #undef HAVE_REGEXEC2 */
25355e19c81STim J. Robbins 
25455e19c81STim J. Robbins /* BSD re_comp() */
25555e19c81STim J. Robbins /* #undef HAVE_RE_COMP */
25655e19c81STim J. Robbins 
25755e19c81STim J. Robbins /* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro. */
25855e19c81STim J. Robbins #define HAVE_SIGEMPTYSET 1
25955e19c81STim J. Robbins 
26055e19c81STim J. Robbins /* Define to 1 if you have the `sigprocmask' function. */
26155e19c81STim J. Robbins #define HAVE_SIGPROCMASK 1
26255e19c81STim J. Robbins 
26355e19c81STim J. Robbins /* Define to 1 if you have the `sigsetmask' function. */
26455e19c81STim J. Robbins #define HAVE_SIGSETMASK 1
26555e19c81STim J. Robbins 
26655e19c81STim J. Robbins /* Define HAVE_SIGSET_T you have the sigset_t type. */
26755e19c81STim J. Robbins /* #undef HAVE_SIGSET_T */
26855e19c81STim J. Robbins 
26972bc07dcSXin LI /* Define to 1 if you have the `snprintf' function. */
27072bc07dcSXin LI #define HAVE_SNPRINTF 1
27172bc07dcSXin LI 
27255e19c81STim J. Robbins /* Define to 1 if you have the `stat' function. */
27355e19c81STim J. Robbins #define HAVE_STAT 1
27455e19c81STim J. Robbins 
27555e19c81STim J. Robbins /* Define to 1 if you have the <stdint.h> header file. */
27655e19c81STim J. Robbins #define HAVE_STDINT_H 1
27755e19c81STim J. Robbins 
27855e19c81STim J. Robbins /* Define to 1 if you have the <stdio.h> header file. */
27955e19c81STim J. Robbins #define HAVE_STDIO_H 1
28055e19c81STim J. Robbins 
28155e19c81STim J. Robbins /* Define to 1 if you have the <stdlib.h> header file. */
28255e19c81STim J. Robbins #define HAVE_STDLIB_H 1
28355e19c81STim J. Robbins 
28455e19c81STim J. Robbins /* Define to 1 if you have the `strchr' function. */
28555e19c81STim J. Robbins #define HAVE_STRCHR 1
28655e19c81STim J. Robbins 
28755e19c81STim J. Robbins /* Define HAVE_STRERROR if you have the strerror() function. */
28855e19c81STim J. Robbins #define HAVE_STRERROR 1
28955e19c81STim J. Robbins 
29055e19c81STim J. Robbins /* Define to 1 if you have the <strings.h> header file. */
29155e19c81STim J. Robbins #define HAVE_STRINGS_H 1
29255e19c81STim J. Robbins 
29355e19c81STim J. Robbins /* Define to 1 if you have the <string.h> header file. */
29455e19c81STim J. Robbins #define HAVE_STRING_H 1
29555e19c81STim J. Robbins 
29655e19c81STim J. Robbins /* Define to 1 if you have the `strstr' function. */
29755e19c81STim J. Robbins #define HAVE_STRSTR 1
29855e19c81STim J. Robbins 
29955e19c81STim J. Robbins /* Define to 1 if you have the `system' function. */
30055e19c81STim J. Robbins #define HAVE_SYSTEM 1
30155e19c81STim J. Robbins 
30255e19c81STim J. Robbins /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable. */
30355e19c81STim J. Robbins #define HAVE_SYS_ERRLIST 1
30455e19c81STim J. Robbins 
30555e19c81STim J. Robbins /* Define to 1 if you have the <sys/ioctl.h> header file. */
30655e19c81STim J. Robbins #define HAVE_SYS_IOCTL_H 1
30755e19c81STim J. Robbins 
30855e19c81STim J. Robbins /* Define to 1 if you have the <sys/ptem.h> header file. */
30955e19c81STim J. Robbins /* #undef HAVE_SYS_PTEM_H */
31055e19c81STim J. Robbins 
31155e19c81STim J. Robbins /* Define to 1 if you have the <sys/stat.h> header file. */
31255e19c81STim J. Robbins #define HAVE_SYS_STAT_H 1
31355e19c81STim J. Robbins 
31455e19c81STim J. Robbins /* Define to 1 if you have the <sys/stream.h> header file. */
31555e19c81STim J. Robbins /* #undef HAVE_SYS_STREAM_H */
31655e19c81STim J. Robbins 
31755e19c81STim J. Robbins /* Define to 1 if you have the <sys/types.h> header file. */
31855e19c81STim J. Robbins #define HAVE_SYS_TYPES_H 1
31955e19c81STim J. Robbins 
32055e19c81STim J. Robbins /* Define to 1 if you have the <termcap.h> header file. */
32155e19c81STim J. Robbins #define HAVE_TERMCAP_H 1
32255e19c81STim J. Robbins 
32355e19c81STim J. Robbins /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr. */
32455e19c81STim J. Robbins #define HAVE_TERMIOS_FUNCS 1
32555e19c81STim J. Robbins 
32655e19c81STim J. Robbins /* Define to 1 if you have the <termios.h> header file. */
32755e19c81STim J. Robbins #define HAVE_TERMIOS_H 1
32855e19c81STim J. Robbins 
32955e19c81STim J. Robbins /* Define to 1 if you have the <termio.h> header file. */
33055e19c81STim J. Robbins /* #undef HAVE_TERMIO_H */
33155e19c81STim J. Robbins 
33255e19c81STim J. Robbins /* Define to 1 if you have the <time.h> header file. */
33355e19c81STim J. Robbins #define HAVE_TIME_H 1
33455e19c81STim J. Robbins 
33555e19c81STim J. Robbins /* Define HAVE_TIME_T if your system supports the "time_t" type. */
33655e19c81STim J. Robbins #define HAVE_TIME_T 1
33755e19c81STim J. Robbins 
33855e19c81STim J. Robbins /* Define to 1 if you have the <unistd.h> header file. */
33955e19c81STim J. Robbins #define HAVE_UNISTD_H 1
34055e19c81STim J. Robbins 
34155e19c81STim J. Robbins /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */
34255e19c81STim J. Robbins #define HAVE_UPPER_LOWER 1
34355e19c81STim J. Robbins 
34455e19c81STim J. Robbins /* Henry Spencer V8 regcomp() and regexp.h */
34555e19c81STim J. Robbins /* #undef HAVE_V8_REGCOMP */
34655e19c81STim J. Robbins 
34755e19c81STim J. Robbins /* Define to 1 if you have the <values.h> header file. */
34855e19c81STim J. Robbins /* #undef HAVE_VALUES_H */
34955e19c81STim J. Robbins 
35055e19c81STim J. Robbins /* Define HAVE_VOID if your compiler supports the "void" type. */
35155e19c81STim J. Robbins #define HAVE_VOID 1
35255e19c81STim J. Robbins 
35355e19c81STim J. Robbins /* Define to 1 if you have the `_setjmp' function. */
35455e19c81STim J. Robbins #define HAVE__SETJMP 1
35555e19c81STim J. Robbins 
35655e19c81STim J. Robbins /* Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h.
35755e19c81STim J. Robbins    */
35855e19c81STim J. Robbins /* #undef MUST_DEFINE_ERRNO */
35955e19c81STim J. Robbins 
36055e19c81STim J. Robbins /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in
36155e19c81STim J. Robbins    termcap.h. */
36255e19c81STim J. Robbins /* #undef MUST_DEFINE_OSPEED */
36355e19c81STim J. Robbins 
36455e19c81STim J. Robbins /* pattern matching is supported, but without metacharacters. */
36555e19c81STim J. Robbins /* #undef NO_REGEX */
36655e19c81STim J. Robbins 
36755e19c81STim J. Robbins /* Define to the address where bug reports for this package should be sent. */
36855e19c81STim J. Robbins #define PACKAGE_BUGREPORT ""
36955e19c81STim J. Robbins 
37055e19c81STim J. Robbins /* Define to the full name of this package. */
37155e19c81STim J. Robbins #define PACKAGE_NAME "less"
37255e19c81STim J. Robbins 
37355e19c81STim J. Robbins /* Define to the full name and version of this package. */
37455e19c81STim J. Robbins #define PACKAGE_STRING "less 1"
37555e19c81STim J. Robbins 
37655e19c81STim J. Robbins /* Define to the one symbol short name of this package. */
37755e19c81STim J. Robbins #define PACKAGE_TARNAME "less"
37855e19c81STim J. Robbins 
37955e19c81STim J. Robbins /* Define to the version of this package. */
38055e19c81STim J. Robbins #define PACKAGE_VERSION "1"
38155e19c81STim J. Robbins 
38255e19c81STim J. Robbins /* Define as the return type of signal handlers (`int' or `void'). */
38355e19c81STim J. Robbins #define RETSIGTYPE void
38455e19c81STim J. Robbins 
38572bc07dcSXin LI /* Define SECURE_COMPILE=1 to build a secure version of less. */
38672bc07dcSXin LI #define SECURE_COMPILE 0
38772bc07dcSXin LI 
38855e19c81STim J. Robbins /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
38955e19c81STim J. Robbins /* #undef STAT_MACROS_BROKEN */
39055e19c81STim J. Robbins 
39155e19c81STim J. Robbins /* Define to 1 if you have the ANSI C header files. */
39255e19c81STim J. Robbins #define STDC_HEADERS 1
39355e19c81STim J. Robbins 
39455e19c81STim J. Robbins /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
39555e19c81STim J. Robbins #define TIME_WITH_SYS_TIME 1
39655e19c81STim J. Robbins 
39755e19c81STim J. Robbins /* Number of bits in a file offset, on hosts where this is settable. */
39855e19c81STim J. Robbins /* #undef _FILE_OFFSET_BITS */
39955e19c81STim J. Robbins 
40055e19c81STim J. Robbins /* Define for large files, on AIX-style hosts. */
40155e19c81STim J. Robbins /* #undef _LARGE_FILES */
40255e19c81STim J. Robbins 
40355e19c81STim J. Robbins /* Define to empty if `const' does not conform to ANSI C. */
40455e19c81STim J. Robbins /* #undef const */
40555e19c81STim J. Robbins 
40655e19c81STim J. Robbins /* Define to `long' if <sys/types.h> does not define. */
40755e19c81STim J. Robbins /* #undef off_t */
40855e19c81STim J. Robbins 
40955e19c81STim J. Robbins /* Define to `unsigned' if <sys/types.h> does not define. */
41055e19c81STim J. Robbins /* #undef size_t */
411