blob: 95baeb319da92898c35bf83e692f70e9d69a3143 (
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
57
58
59
60
|
BASH PATCH REPORT
=================
Bash-Release: 4.0
Patch-ID: bash40-037
Bug-Reported-by: Chet Ramey <chet.ramey@case.edu>
Bug-Reference-ID: <4AD7D749.5030601@case.edu>
Bug-Reference-URL:
Bug-Description:
The configure script does not work on Snow Leopard and will result in
attempts to link against the incorrect version of readline.
Patch:
*** ../bash-4.0-patched/configure.in 2009-02-06 12:03:44.000000000 -0500
--- configure.in 2009-10-01 16:38:24.000000000 -0400
***************
*** 534,538 ****
# dynamic version
case "${host_os}" in
! darwin[[89]]*) READLINE_LIB='${READLINE_LIBRARY}' ;;
*) READLINE_LIB=-lreadline ;;
esac
--- 534,538 ----
# dynamic version
case "${host_os}" in
! darwin[[89]]*|darwin10*) READLINE_LIB='${READLINE_LIBRARY}' ;;
*) READLINE_LIB=-lreadline ;;
esac
***************
*** 569,573 ****
# dynamic version
case "${host_os}" in
! darwin[[89]]*) HISTORY_LIB='${HISTORY_LIBRARY}' ;;
*) HISTORY_LIB=-lhistory ;;
esac
--- 569,573 ----
# dynamic version
case "${host_os}" in
! darwin[[89]]*|darwin10*) HISTORY_LIB='${HISTORY_LIBRARY}' ;;
*) HISTORY_LIB=-lhistory ;;
esac
*** ../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 36
#endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 37
#endif /* _PATCHLEVEL_H_ */
|