]> git.ipfire.org Git - thirdparty/bash.git/blob - config-top.h
Imported from ../bash-2.04.tar.gz.
[thirdparty/bash.git] / config-top.h
1 /* config.h.top */
2
3 /* This contains various user-settable options not under the control of
4 autoconf. */
5
6 /* Define CONTINUE_AFTER_KILL_ERROR if you want the kill command to
7 continue processing arguments after one of them fails. This is
8 what POSIX.2 specifies. */
9 #define CONTINUE_AFTER_KILL_ERROR
10
11 /* Define BREAK_COMPLAINS if you want the non-standard, but useful
12 error messages about `break' and `continue' out of context. */
13 #define BREAK_COMPLAINS
14
15 /* Define BUFFERED_INPUT if you want the shell to do its own input
16 buffering, rather than using stdio. Do not undefine this; it's
17 required to preserve semantics required by POSIX. */
18 #define BUFFERED_INPUT
19
20 /* Define ONESHOT if you want sh -c 'command' to avoid forking to execute
21 `command' whenever possible. This is a big efficiency improvement. */
22 #define ONESHOT
23
24 /* Define V9_ECHO if you want to give the echo builtin backslash-escape
25 interpretation using the -e option, in the style of the Bell Labs 9th
26 Edition version of echo. You cannot emulate the System V echo behavior
27 without this option. */
28 #define V9_ECHO
29
30 /* Define DONT_REPORT_SIGPIPE if you don't want to see `Broken pipe' messages
31 when a job like `cat jobs.c | exit 1' is executed. */
32 /* #define DONT_REPORT_SIGPIPE */
33
34 /* The default value of the PATH variable. */
35 #ifndef DEFAULT_PATH_VALUE
36 #define DEFAULT_PATH_VALUE \
37 "/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin:."
38 #endif
39
40 /* The value for PATH when invoking `command -p'. This is only used when
41 the Posix.2 confstr () function, or CS_PATH define are not present. */
42 #ifndef STANDARD_UTILS_PATH
43 #define STANDARD_UTILS_PATH \
44 "/bin:/usr/bin:/usr/ucb:/sbin:/usr/sbin:/etc:/usr/etc"
45 #endif
46
47 /* Default primary and secondary prompt strings. */
48 #define PPROMPT "\\s-\\v\\$ "
49 #define SPROMPT "> "
50
51 /* System-wide .bashrc file for interactive shells. */
52 /* #define SYS_BASHRC "/etc/bash.bashrc" */
53
54 /* System-wide .bash_logout for login shells. */
55 /* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */
56
57 /* Define this to make non-interactive shells begun with argv[0][0] == '-'
58 run the startup files when not in posix mode. */
59 /* #define NON_INTERACTIVE_LOGIN_SHELLS */