]> git.pld-linux.org Git - packages/bash.git/blob - bash31-003
- official pash batches
[packages/bash.git] / bash31-003
1                              BASH PATCH REPORT
2                              =================
3
4 Bash-Release: 3.1
5 Patch-ID: bash31-003
6
7 Bug-Reported-by: Adam Buraczewski <adamb@nor.pl>
8 Bug-Reference-ID: <200512210950.jBL9o4C2008608@localhost.localdomain>
9 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2005-12/msg00055.html
10
11 Bug-Description:
12
13 A missing #define guard causes bash to not compile when readline is not
14 configured in, either as the result of explicit disabling or when the
15 `--enable-minimal-config' option is given to configure.
16
17 Patch:
18
19 *** ../bash-3.1/variables.c     Sat Nov 12 21:22:37 2005
20 --- variables.c Mon Dec 26 13:34:03 2005
21 ***************
22 *** 861,867 ****
23 --- 863,871 ----
24     char val[INT_STRLEN_BOUND(int) + 1], *v;
25   
26 + #if defined (READLINE)
27     /* If we are currently assigning to LINES or COLUMNS, don't do anything. */
28     if (winsize_assignment)
29       return;
30 + #endif
31   
32     v = inttostr (lines, val, sizeof (val));
33 *** ../bash-3.1/patchlevel.h    Wed Jul 20 13:58:20 2005
34 --- patchlevel.h        Wed Dec  7 13:48:42 2005
35 ***************
36 *** 26,30 ****
37      looks for to find the patch level (for the sccs version string). */
38   
39 ! #define PATCHLEVEL 2
40   
41   #endif /* _PATCHLEVEL_H_ */
42 --- 26,30 ----
43      looks for to find the patch level (for the sccs version string). */
44   
45 ! #define PATCHLEVEL 3
46   
47   #endif /* _PATCHLEVEL_H_ */
This page took 0.0648 seconds and 4 git commands to generate.