mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 15:43:18 +02:00
commit bash-20050309 snapshot
This commit is contained in:
@@ -11155,3 +11155,14 @@ builtins/read.def
|
||||
escaping IFS whitespace characters at the end of input cause the
|
||||
whitespace characters to be preserved in the value assigned to the
|
||||
variable, and the trailing non-whitespace field delimiter issue
|
||||
|
||||
3/7
|
||||
---
|
||||
configure.in
|
||||
- add -D_POSIX_SOURCE to the LOCAL_CFLAGS for Interix
|
||||
|
||||
3/8
|
||||
---
|
||||
bashline.c
|
||||
- make bash_directory_expansion a void function, since it doesn't have
|
||||
any return value
|
||||
|
||||
+2
-2
@@ -100,7 +100,7 @@ static int history_and_alias_expand_line __P((int, int));
|
||||
#endif
|
||||
|
||||
/* Helper functions for Readline. */
|
||||
static int bash_directory_expansion __P((char **));
|
||||
static void bash_directory_expansion __P((char **));
|
||||
static int bash_directory_completion_hook __P((char **));
|
||||
static int filename_completion_ignore __P((char **));
|
||||
static int bash_push_line __P((void));
|
||||
@@ -2207,7 +2207,7 @@ bash_ignore_everything (names)
|
||||
/* Simulate the expansions that will be performed by
|
||||
rl_filename_completion_function. This must be called with the address of
|
||||
a pointer to malloc'd memory. */
|
||||
static int
|
||||
static void
|
||||
bash_directory_expansion (dirname)
|
||||
char **dirname;
|
||||
{
|
||||
|
||||
+1
-1
@@ -960,7 +960,7 @@ linux*) LOCAL_LDFLAGS=-rdynamic ;; # allow dynamic loading
|
||||
*qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;;
|
||||
powerux*) LOCAL_LIBS="-lgen" ;;
|
||||
cygwin*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;;
|
||||
opennt*|interix*) LOCAL_CFLAGS="-DNO_MAIN_ENV_ARG -DBROKEN_DIRENT_D_INO" ;;
|
||||
opennt*|interix*) LOCAL_CFLAGS="-DNO_MAIN_ENV_ARG -DBROKEN_DIRENT_D_INO -D_POSIX_SOURCE" ;;
|
||||
esac
|
||||
|
||||
dnl Stanza for OS/compiler pair-specific flags
|
||||
|
||||
Reference in New Issue
Block a user