defines.wn revision 60786
1251881Speter/*
2251881Speter * Copyright (C) 1984-2000  Mark Nudelman
3251881Speter *
4251881Speter * You may distribute under the terms of either the GNU General Public
5251881Speter * License or the Less License, as specified in the README file.
6251881Speter *
7251881Speter * For more information about less, or for information on how to 
8251881Speter * contact the author, see the README file.
9251881Speter */
10251881Speter
11251881Speter
12251881Speter/* Windows definition file for less.  */
13251881Speter/*
14251881Speter * This file has 2 sections:
15251881Speter * User preferences.
16251881Speter * Settings always true for Windows systems. 
17251881Speter */
18251881Speter
19251881Speter
20251881Speter/* User preferences.  */
21251881Speter
22251881Speter/*
23251881Speter * SECURE is 1 if you wish to disable a bunch of features in order to
24251881Speter * be safe to run by unprivileged users.
25251881Speter */
26251881Speter#define	SECURE		0
27251881Speter
28251881Speter/*
29251881Speter * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
30251881Speter * (This is possible only if your system supplies the system() function.)
31251881Speter */
32251881Speter#define	SHELL_ESCAPE	(!SECURE)
33251881Speter
34251881Speter/*
35251881Speter * EXAMINE is 1 if you wish to allow examining files by name from within less.
36251881Speter */
37251881Speter#define	EXAMINE		(!SECURE)
38251881Speter
39251881Speter/*
40251881Speter * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
41251881Speter * to complete filenames at prompts.
42251881Speter */
43251881Speter#define	TAB_COMPLETE_FILENAME	(!SECURE)
44251881Speter
45251881Speter/*
46251881Speter * CMD_HISTORY is 1 if you wish to allow keys to cycle through
47251881Speter * previous commands at prompts.
48251881Speter */
49251881Speter#define	CMD_HISTORY	1
50251881Speter
51251881Speter/*
52251881Speter * HILITE_SEARCH is 1 if you wish to have search targets to be 
53251881Speter * displayed in standout mode.
54251881Speter */
55251881Speter#define	HILITE_SEARCH	1
56251881Speter
57251881Speter/*
58251881Speter * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
59251881Speter * (This is possible only if your system supplies the system() function.)
60251881Speter * EDIT_PGM is the name of the (default) editor to be invoked.
61251881Speter */
62251881Speter#define	EDITOR		(!SECURE)
63251881Speter#define	EDIT_PGM	"edit"
64251881Speter
65251881Speter/*
66251881Speter * TAGS is 1 if you wish to support tag files.
67251881Speter */
68251881Speter#define	TAGS		(!SECURE)
69251881Speter
70251881Speter/*
71251881Speter * USERFILE is 1 if you wish to allow a .less file to specify 
72251881Speter * user-defined key bindings.
73251881Speter */
74251881Speter#define	USERFILE	(!SECURE)
75289180Speter
76251881Speter/*
77251881Speter * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
78251881Speter * This will generally work if your system provides the "popen" function
79251881Speter * and the "echo" shell command.
80251881Speter */
81251881Speter#define	GLOB		0
82251881Speter
83251881Speter/*
84251881Speter * PIPEC is 1 if you wish to have the "|" command
85251881Speter * which allows the user to pipe data into a shell command.
86251881Speter */
87251881Speter#define	PIPEC		1
88251881Speter
89251881Speter/*
90251881Speter * LOGFILE is 1 if you wish to allow the -l option (to create log files).
91251881Speter */
92251881Speter#define	LOGFILE		(!SECURE)
93251881Speter
94251881Speter/*
95251881Speter * GNU_OPTIONS is 1 if you wish to support the GNU-style command
96251881Speter * line options --help and --version.
97251881Speter */
98251881Speter#define	GNU_OPTIONS	1
99251881Speter
100251881Speter/*
101251881Speter * ONLY_RETURN is 1 if you want RETURN to be the only input which
102251881Speter * will continue past an error message.
103251881Speter * Otherwise, any key will continue past an error message.
104251881Speter */
105251881Speter#define	ONLY_RETURN	0
106251881Speter
107251881Speter/*
108251881Speter * LESSKEYFILE is the filename of the default lesskey output file 
109251881Speter * (in the HOME directory).
110251881Speter * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
111251881Speter * DEF_LESSKEYINFILE is the filename of the default lesskey input 
112251881Speter * (in the HOME directory).
113251881Speter */
114251881Speter#define	LESSKEYFILE		"_less"
115251881Speter#define	LESSKEYFILE_SYS		"c:\\_sysless"
116251881Speter#define	DEF_LESSKEYINFILE	"_lesskey"
117289180Speter
118289180Speter
119289180Speter/* Settings always true for Windows systems.  */
120289180Speter
121289180Speter#define MSDOS_COMPILER	WIN32C
122289180Speter
123251881Speter/*
124251881Speter * Pathname separator character.
125251881Speter */
126251881Speter#define	PATHNAME_SEP	"\\"
127251881Speter
128251881Speter/*
129251881Speter * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
130251881Speter */
131251881Speter#define HAVE_SYS_TYPES_H	1
132251881Speter
133251881Speter/*
134251881Speter * Define if you have the <sgstat.h> header file.
135251881Speter */
136251881Speter#define HAVE_SGSTAT_H	0
137251881Speter
138251881Speter/*
139251881Speter * HAVE_PERROR is 1 if your system has the perror() call.
140251881Speter * (Actually, if it has sys_errlist, sys_nerr and errno.)
141251881Speter */
142251881Speter#define	HAVE_PERROR	1
143251881Speter
144251881Speter/*
145251881Speter * HAVE_TIME is 1 if your system has the time() call.
146251881Speter */
147251881Speter#define	HAVE_TIME	1
148251881Speter
149251881Speter/*
150251881Speter * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
151251881Speter */
152251881Speter#define	HAVE_SHELL	0
153251881Speter
154251881Speter/* 
155251881Speter * HAVE_DUP is 1 if your system has the dup() call.
156251881Speter */
157251881Speter#define	HAVE_DUP	1
158251881Speter
159251881Speter/*
160251881Speter * Sizes of various buffers.
161251881Speter */
162251881Speter#define	CMDBUF_SIZE	512	/* Buffer for multichar commands */
163251881Speter#define	UNGOT_SIZE	100	/* Max chars to unget() */
164251881Speter#define	LINEBUF_SIZE	1024	/* Max size of line in input file */
165251881Speter#define	OUTBUF_SIZE	1024	/* Output buffer */
166251881Speter#define	PROMPT_SIZE	200	/* Max size of prompt string */
167251881Speter#define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
168251881Speter#define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
169251881Speter#define	TAGLINE_SIZE	512	/* Max size of line in tags file */
170251881Speter
171251881Speter/* Define to `long' if <sys/types.h> doesn't define.  */
172251881Speter/* #define	off_t	long */
173251881Speter
174251881Speter/* Define if you need to in order for stat and other things to work.  */
175251881Speter/* #undef _POSIX_SOURCE */
176251881Speter
177251881Speter/* Define as the return type of signal handlers (int or void).  */
178251881Speter#define RETSIGTYPE void
179289180Speter
180289180Speter
181289180Speter/*
182289180Speter * Regular expression library.
183289180Speter * Define exactly one of the following to be 1:
184251881Speter * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h
185251881Speter * HAVE_RE_COMP: BSD re_comp()
186 * HAVE_REGCMP: System V regcmp()
187 * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h
188 * NO_REGEX: pattern matching is supported, but without metacharacters.
189 */
190/* #undef HAVE_POSIX_REGCOMP */
191/* #undef HAVE_RE_COMP */
192/* #undef HAVE_REGCMP */
193#define HAVE_V8_REGCOMP 1
194/* #undef NO_REGEX */
195#define HAVE_REGEXEC2 1
196
197/* Define HAVE_VOID if your compiler supports the "void" type. */
198#define HAVE_VOID 1
199
200/* Define HAVE_CONST if your compiler supports the "const" modifier. */
201#define HAVE_CONST 1
202
203/* Define HAVE_TIME_T if your system supports the "time_t" type. */
204#define HAVE_TIME_T 1
205
206/* Define HAVE_STRERROR if you have the strerror() function. */
207#define HAVE_STRERROR 1
208
209/* Define HAVE_FILENO if you have the fileno() macro. */
210#define HAVE_FILENO 1
211
212/* Define HAVE_ERRNO if you have the errno variable */
213/* Define MUST_DEFINE_ERRNO if you have errno but it is not define 
214 * in errno.h */
215#define HAVE_ERRNO 1
216#define MUST_DEFINE_ERRNO 1
217
218/* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
219#define HAVE_SYS_ERRLIST 1
220
221/* Define HAVE_OSPEED if your termcap library has the ospeed variable */
222#define HAVE_OSPEED 0
223/* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined
224 * in termcap.h. */
225#define MUST_DEFINE_OSPEED 0
226
227/* Define HAVE_LOCALE if you have locale.h and setlocale. */
228#define HAVE_LOCALE 1
229
230/* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */
231#define HAVE_TERMIOS_FUNCS 0
232
233/* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */
234#define HAVE_UPPER_LOWER 1
235
236/* Define if you have the _setjmp function.  */
237#define HAVE__SETJMP	1
238
239/* Define if you have the memcpy function.  */
240#define HAVE_MEMCPY 1
241
242/* Define if you have the popen function.  */
243#define HAVE_POPEN 0
244
245/* Define if you have the sigsetmask function.  */
246#define HAVE_SIGSETMASK	0
247
248/* Define if you have the stat function.  */
249#define HAVE_STAT 1
250
251/* Define if you have the strchr function.  */
252#define HAVE_STRCHR 1
253
254/* Define if you have the system function.  */
255#define HAVE_SYSTEM	1
256
257/* Define if you have the <ctype.h> header file.  */
258#define HAVE_CTYPE_H 1
259
260/* Define if you have the <errno.h> header file.  */
261#define HAVE_ERRNO_H 1
262
263/* Define if you have the <fcntl.h> header file.  */
264#define HAVE_FCNTL_H 1
265
266/* Define if you have the <limits.h> header file.  */
267#define HAVE_LIMITS_H 0
268
269/* Define if you have the <stdio.h> header file.  */
270#define HAVE_STDIO_H 1
271
272/* Define if you have the <string.h> header file.  */
273#define HAVE_STRING_H 1
274
275/* Define if you have the <stdlib> header file. */
276#define HAVE_STDLIB_H 1
277
278/* Define if you have the <sys/ioctl.h> header file.  */
279#define HAVE_SYS_IOCTL_H 0
280
281/* Define if you have the <sys/ptem.h> header file.  */
282#define HAVE_SYS_PTEM_H	0
283
284/* Define if you have the <sys/stream.h> header file.  */
285#define HAVE_SYS_STREAM_H	0
286
287/* Define if you have the <termcap.h> header file.  */
288#define HAVE_TERMCAP_H	0
289
290/* Define if you have the <termio.h> header file.  */
291#define HAVE_TERMIO_H	0
292
293/* Define if you have the <termios.h> header file.  */
294#define HAVE_TERMIOS_H 0
295
296/* Define if you have the <time.h> header file.  */
297#define HAVE_TIME_H 1
298
299/* Define if you have the <unistd.h> header file.  */
300#define HAVE_UNISTD_H 0
301
302/* Define if you have the <values.h> header file.  */
303#ifdef _MSC_VER
304#define HAVE_VALUES_H 0
305#else
306#define HAVE_VALUES_H 1
307#endif
308
309#define	popen	_popen
310#define	pclose	_pclose
311