config.h revision 1.14
1/*	$OpenBSD: config.h,v 1.14 2011/03/14 21:20:00 okan Exp $	*/
2
3/* config.h.  NOT generated automatically. */
4
5/*
6 * This file, config.h, which is a part of pdksh (the public domain ksh),
7 * is placed in the public domain.  It comes with no licence, warranty
8 * or guarantee of any kind (i.e., at your own risk).
9 */
10
11#ifndef CONFIG_H
12#define CONFIG_H
13
14/* Include emacs editing? */
15#define EMACS 1
16
17/* Include vi editing? */
18#define VI 1
19
20/* Include job control? */
21#define JOBS 1
22
23/* Include brace-expansion? */
24#define BRACE_EXPAND 1
25
26/* Include any history? */
27#define HISTORY 1
28
29/* Strict POSIX behaviour? */
30/* #undef POSIXLY_CORRECT */
31
32/* Specify default $ENV? */
33/* #undef DEFAULT_ENV */
34
35/* The number of bytes in a int.  */
36#define SIZEOF_INT 4
37
38/*
39 * End of configuration stuff for PD ksh.
40 */
41
42#if defined(EMACS) || defined(VI)
43# define	EDIT
44#else
45# undef		EDIT
46#endif
47
48/* Super small configuration-- no editing. */
49#if defined(EDIT) && defined(NOEDIT)
50# undef EDIT
51# undef EMACS
52# undef VI
53#endif
54
55/* Editing implies history */
56#if defined(EDIT) && !defined(HISTORY)
57# define HISTORY
58#endif /* EDIT */
59
60#endif /* CONFIG_H */
61