blob: 412b2c71b12bb4b1c0d69d53d029ca661de8b1fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
BASH PATCH REPORT
=================
Bash-Release: 4.0
Patch-ID: bash40-026
Bug-Reported-by: Sergei Steshenko <sergstesh@yahoo.com>
Bug-Reference-ID: <670181.38883.qm@web35204.mail.mud.yahoo.com>
Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-05/msg00059.html
Bug-Description:
A forgotten line in externs.h caused compilation errors to occur on some
systems (e.g., Cygwin).
Patch:
*** ../bash-4.0-patched/externs.h 2009-01-18 18:29:29.000000000 -0500
--- externs.h 2009-06-02 09:05:40.000000000 -0400
***************
*** 193,196 ****
--- 193,198 ----
/* Declarations for functions defined in lib/sh/fpurge.c */
+
+ #if defined NEED_FPURGE_DECL
#if !HAVE_DECL_FPURGE
***************
*** 201,205 ****
#endif /* HAVE_DECL_FPURGE */
!
/* Declarations for functions defined in lib/sh/getcwd.c */
--- 203,207 ----
#endif /* HAVE_DECL_FPURGE */
! #endif /* NEED_FPURGE_DECL */
/* Declarations for functions defined in lib/sh/getcwd.c */
*** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500
--- patchlevel.h 2009-02-22 16:11:31.000000000 -0500
***************
*** 26,30 ****
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 25
#endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 26
#endif /* _PATCHLEVEL_H_ */
|