defines.wn revision 221715
117721Speter/*
217721Speter * Copyright (C) 1984-2011  Mark Nudelman
317721Speter *
417721Speter * You may distribute under the terms of either the GNU General Public
517721Speter * License or the Less License, as specified in the README file.
617721Speter *
717721Speter * For more information about less, or for information on how to 
817721Speter * contact the author, see the README file.
917721Speter */
1017721Speter
1117721Speter
1217721Speter/* Windows definition file for less.  */
1317721Speter/*
1417721Speter * This file has 2 sections:
1517721Speter * User preferences.
1617721Speter * Settings always true for Windows systems. 
1717721Speter */
1817721Speter
1917721Speter
2017721Speter/* User preferences.  */
2117721Speter
2217721Speter/*
2317721Speter * SECURE is 1 if you wish to disable a bunch of features in order to
2417721Speter * be safe to run by unprivileged users.
2517721Speter */
2617721Speter#define	SECURE		0
2717721Speter
2817721Speter/*
2917721Speter * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
3017721Speter * (This is possible only if your system supplies the system() function.)
3117721Speter */
3217721Speter#define	SHELL_ESCAPE	(!SECURE)
3317721Speter
3417721Speter/*
3517721Speter * EXAMINE is 1 if you wish to allow examining files by name from within less.
3617721Speter */
3717721Speter#define	EXAMINE		(!SECURE)
3817721Speter
3917721Speter/*
4017721Speter * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
4117721Speter * to complete filenames at prompts.
4217721Speter */
4317721Speter#define	TAB_COMPLETE_FILENAME	(!SECURE)
4417721Speter
4517721Speter/*
4617721Speter * CMD_HISTORY is 1 if you wish to allow keys to cycle through
4717721Speter * previous commands at prompts.
4817721Speter */
4917721Speter#define	CMD_HISTORY	1
5017721Speter
5117721Speter/*
5217721Speter * HILITE_SEARCH is 1 if you wish to have search targets to be 
5317721Speter * displayed in standout mode.
5417721Speter */
5517721Speter#define	HILITE_SEARCH	1
5617721Speter
5717721Speter/*
5817721Speter * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
5917721Speter * (This is possible only if your system supplies the system() function.)
6017721Speter * EDIT_PGM is the name of the (default) editor to be invoked.
6117721Speter */
6217721Speter#define	EDITOR		(!SECURE)
6317721Speter#define	EDIT_PGM	"edit"
6417721Speter
6517721Speter/*
6617721Speter * TAGS is 1 if you wish to support tag files.
6717721Speter */
6817721Speter#define	TAGS		(!SECURE)
6917721Speter
7017721Speter/*
7117721Speter * USERFILE is 1 if you wish to allow a .less file to specify 
7217721Speter * user-defined key bindings.
7317721Speter */
7417721Speter#define	USERFILE	(!SECURE)
7517721Speter
7617721Speter/*
7717721Speter * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
7817721Speter * This will generally work if your system provides the "popen" function
7917721Speter * and the "echo" shell command.
8017721Speter */
8117721Speter#define	GLOB		0
8217721Speter
8317721Speter/*
8417721Speter * PIPEC is 1 if you wish to have the "|" command
8517721Speter * which allows the user to pipe data into a shell command.
8617721Speter */
8717721Speter#define	PIPEC		1
8817721Speter
8917721Speter/*
9017721Speter * LOGFILE is 1 if you wish to allow the -l option (to create log files).
9117721Speter */
9217721Speter#define	LOGFILE		(!SECURE)
9317721Speter
9417721Speter/*
9517721Speter * GNU_OPTIONS is 1 if you wish to support the GNU-style command
9617721Speter * line options --help and --version.
9717721Speter */
9817721Speter#define	GNU_OPTIONS	1
9917721Speter
10017721Speter/*
10117721Speter * ONLY_RETURN is 1 if you want RETURN to be the only input which
10217721Speter * will continue past an error message.
10317721Speter * Otherwise, any key will continue past an error message.
10417721Speter */
10517721Speter#define	ONLY_RETURN	0
10617721Speter
10717721Speter/*
10817721Speter * LESSKEYFILE is the filename of the default lesskey output file 
10917721Speter * (in the HOME directory).
11017721Speter * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
11117721Speter * DEF_LESSKEYINFILE is the filename of the default lesskey input 
11217721Speter * (in the HOME directory).
11317721Speter * LESSHISTFILE is the filename of the history file
11417721Speter * (in the HOME directory).
115 */
116#define	LESSKEYFILE		"_less"
117#define	LESSKEYFILE_SYS		"c:\\_sysless"
118#define	DEF_LESSKEYINFILE	"_lesskey"
119#define LESSHISTFILE		"_lesshst"
120
121
122/* Settings always true for Windows systems.  */
123
124#define MSDOS_COMPILER	WIN32C
125
126/*
127 * Pathname separator character.
128 */
129#define	PATHNAME_SEP	"\\"
130
131/*
132 * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
133 */
134#define HAVE_SYS_TYPES_H	1
135
136/*
137 * Define if you have the <sgstat.h> header file.
138 */
139#define HAVE_SGSTAT_H	0
140
141/*
142 * HAVE_PERROR is 1 if your system has the perror() call.
143 * (Actually, if it has sys_errlist, sys_nerr and errno.)
144 */
145#define	HAVE_PERROR	1
146
147/*
148 * HAVE_TIME is 1 if your system has the time() call.
149 */
150#define	HAVE_TIME	1
151
152/*
153 * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
154 */
155#define	HAVE_SHELL	0
156
157/*
158 * Default shell metacharacters and meta-escape character.
159 */
160#define	DEF_METACHARS	"; *?\t\n'\"()<>|&"
161#define	DEF_METAESCAPE	""
162
163/* 
164 * HAVE_DUP is 1 if your system has the dup() call.
165 */
166#define	HAVE_DUP	1
167
168/*
169 * Sizes of various buffers.
170 */
171#define	CMDBUF_SIZE	512	/* Buffer for multichar commands */
172#define	UNGOT_SIZE	100	/* Max chars to unget() */
173#define	LINEBUF_SIZE	1024	/* Max size of line in input file */
174#define	OUTBUF_SIZE	1024	/* Output buffer */
175#define	PROMPT_SIZE	200	/* Max size of prompt string */
176#define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
177#define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
178#define	TAGLINE_SIZE	512	/* Max size of line in tags file */
179#define	TABSTOP_MAX	32	/* Max number of custom tab stops */
180
181/* Define to `long' if <sys/types.h> doesn't define.  */
182/* #define	off_t	long */
183
184/* Define if you need to in order for stat and other things to work.  */
185/* #undef _POSIX_SOURCE */
186
187/* Define as the return type of signal handlers (int or void).  */
188#define RETSIGTYPE void
189
190
191/*
192 * Regular expression library.
193 * Define exactly one of the following to be 1:
194 * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h
195 * HAVE_RE_COMP: BSD re_comp()
196 * HAVE_REGCMP: System V regcmp()
197 * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h
198 * NO_REGEX: pattern matching is supported, but without metacharacters.
199 */
200/* #undef HAVE_POSIX_REGCOMP */
201/* #undef HAVE_RE_COMP */
202/* #undef HAVE_REGCMP */
203#define HAVE_V8_REGCOMP 1
204/* #undef NO_REGEX */
205#define HAVE_REGEXEC2 1
206
207/* Define HAVE_VOID if your compiler supports the "void" type. */
208#define HAVE_VOID 1
209
210/* Define HAVE_CONST if your compiler supports the "const" modifier. */
211#define HAVE_CONST 1
212
213/* Define HAVE_TIME_T if your system supports the "time_t" type. */
214#define HAVE_TIME_T 1
215
216/* Define HAVE_STRERROR if you have the strerror() function. */
217#define HAVE_STRERROR 1
218
219/* Define HAVE_FILENO if you have the fileno() macro. */
220#define HAVE_FILENO 1
221
222/* Define HAVE_ERRNO if you have the errno variable */
223/* Define MUST_DEFINE_ERRNO if you have errno but it is not define 
224 * in errno.h */
225#define HAVE_ERRNO 1
226#define MUST_DEFINE_ERRNO 1
227
228/* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
229#define HAVE_SYS_ERRLIST 1
230
231/* Define HAVE_OSPEED if your termcap library has the ospeed variable */
232#define HAVE_OSPEED 0
233/* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined
234 * in termcap.h. */
235#define MUST_DEFINE_OSPEED 0
236
237/* Define HAVE_LOCALE if you have locale.h and setlocale. */
238#define HAVE_LOCALE 0
239
240/* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */
241#define HAVE_TERMIOS_FUNCS 0
242
243/* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */
244#define HAVE_UPPER_LOWER 1
245
246/* Define if you have the _setjmp function.  */
247#define HAVE__SETJMP	1
248
249/* Define if you have the memcpy function.  */
250#define HAVE_MEMCPY 1
251
252/* Define if you have the popen function.  */
253#define HAVE_POPEN 1
254
255/* Define if you have the sigsetmask function.  */
256#define HAVE_SIGSETMASK	0
257
258/* Define if you have the sigprocmask function.  */
259#define HAVE_SIGPROCMASK	0
260
261/* Define if you have the sigset_t type and sigemptyset macro */
262#define HAVE_SIGSET_T	0
263#define HAVE_SIGEMPTYSET	0
264
265/* Define if you have the stat function.  */
266#define HAVE_STAT 1
267
268/* Define if you have the strchr function.  */
269#define HAVE_STRCHR 1
270
271/* Define if you have the system function.  */
272#define HAVE_SYSTEM	1
273
274/* Define if you have the snprintf function.  */
275#define HAVE_SNPRINTF	1
276
277/* Define if you have the <ctype.h> header file.  */
278#define HAVE_CTYPE_H 1
279
280/* Define if you have the <wctype.h> header file.  */
281#define HAVE_WCTYPE_H 1
282
283/* Define if you have the <errno.h> header file.  */
284#define HAVE_ERRNO_H 1
285
286/* Define if you have the <fcntl.h> header file.  */
287#define HAVE_FCNTL_H 1
288
289/* Define HAVE_FLOAT if your compiler supports the "double" type. */
290#define HAVE_FLOAT 1
291
292/* Define if you have the <limits.h> header file.  */
293#define HAVE_LIMITS_H 1
294
295/* Define if you have the <stdio.h> header file.  */
296#define HAVE_STDIO_H 1
297
298/* Define if you have the <string.h> header file.  */
299#define HAVE_STRING_H 1
300
301/* Define if you have the <stdlib> header file. */
302#define HAVE_STDLIB_H 1
303
304/* Define if you have the <sys/ioctl.h> header file.  */
305#define HAVE_SYS_IOCTL_H 0
306
307/* Define if you have the <sys/ptem.h> header file.  */
308#define HAVE_SYS_PTEM_H	0
309
310/* Define if you have the <sys/stream.h> header file.  */
311#define HAVE_SYS_STREAM_H	0
312
313/* Define if you have the <termcap.h> header file.  */
314#define HAVE_TERMCAP_H	0
315
316/* Define if you have the <termio.h> header file.  */
317#define HAVE_TERMIO_H	0
318
319/* Define if you have the <termios.h> header file.  */
320#define HAVE_TERMIOS_H 0
321
322/* Define if you have the <time.h> header file.  */
323#define HAVE_TIME_H 1
324
325/* Define if you have the <unistd.h> header file.  */
326#define HAVE_UNISTD_H 0
327
328/* Define if you have the <values.h> header file.  */
329#ifdef _MSC_VER
330#define HAVE_VALUES_H 0
331#else
332#define HAVE_VALUES_H 1
333#endif
334
335#define	popen	_popen
336#define	pclose	_pclose
337#define snprintf	_snprintf
338
339#pragma warning(disable:4996)
340