| 1 | /* config-top.h */
|
|---|
| 2 |
|
|---|
| 3 | /* This contains various user-settable options not under the control of
|
|---|
| 4 | autoconf. */
|
|---|
| 5 |
|
|---|
| 6 | /* Copyright (C) 2002 Free Software Foundation, Inc.
|
|---|
| 7 |
|
|---|
| 8 | This file is part of GNU Bash, the Bourne Again SHell.
|
|---|
| 9 |
|
|---|
| 10 | Bash is free software; you can redistribute it and/or modify it under
|
|---|
| 11 | the terms of the GNU General Public License as published by the Free
|
|---|
| 12 | Software Foundation; either version 2, or (at your option) any later
|
|---|
| 13 | version.
|
|---|
| 14 |
|
|---|
| 15 | Bash is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 16 | WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|---|
| 17 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|---|
| 18 | for more details.
|
|---|
| 19 |
|
|---|
| 20 | You should have received a copy of the GNU General Public License along
|
|---|
| 21 | with Bash; see the file COPYING. If not, write to the Free Software
|
|---|
| 22 | Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
|
|---|
| 23 |
|
|---|
| 24 | /* Define CONTINUE_AFTER_KILL_ERROR if you want the kill command to
|
|---|
| 25 | continue processing arguments after one of them fails. This is
|
|---|
| 26 | what POSIX.2 specifies. */
|
|---|
| 27 | #define CONTINUE_AFTER_KILL_ERROR
|
|---|
| 28 |
|
|---|
| 29 | /* Define BREAK_COMPLAINS if you want the non-standard, but useful
|
|---|
| 30 | error messages about `break' and `continue' out of context. */
|
|---|
| 31 | #define BREAK_COMPLAINS
|
|---|
| 32 |
|
|---|
| 33 | /* Define BUFFERED_INPUT if you want the shell to do its own input
|
|---|
| 34 | buffering, rather than using stdio. Do not undefine this; it's
|
|---|
| 35 | required to preserve semantics required by POSIX. */
|
|---|
| 36 | #define BUFFERED_INPUT
|
|---|
| 37 |
|
|---|
| 38 | /* Define ONESHOT if you want sh -c 'command' to avoid forking to execute
|
|---|
| 39 | `command' whenever possible. This is a big efficiency improvement. */
|
|---|
| 40 | #define ONESHOT
|
|---|
| 41 |
|
|---|
| 42 | /* Define V9_ECHO if you want to give the echo builtin backslash-escape
|
|---|
| 43 | interpretation using the -e option, in the style of the Bell Labs 9th
|
|---|
|
|---|