Initialize Tizen 2.3
[external/bash.git] / debian / patches / bash41-001.dpatch
1 #! /bin/sh -e
2
3 if [ $# -eq 3 -a "$2" = '-d' ]; then
4     pdir="-d $3"
5 elif [ $# -ne 1 ]; then
6     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
7     exit 1
8 fi
9 case "$1" in
10     -patch) patch $pdir -f --no-backup-if-mismatch -p1 < $0;;
11     -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p1 < $0;;
12     *)
13         echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
14         exit 1
15 esac
16 exit 0
17
18 # DP: bash-4.1 upstream patch 001
19
20                              BASH PATCH REPORT
21                              =================
22
23 Bash-Release:   4.1
24 Patch-ID:       bash41-001
25
26 Bug-Reported-by:        Yann Rouillard <yann@pleiades.fr.eu.org>
27 Bug-Reference-ID:       <4B44A410.4070107@pleiades.fr.eu.org>
28 Bug-Reference-URL:      http://lists.gnu.org/archive/html/bug-bash/2010-01/msg00018.html
29
30 Bug-Description:
31
32 A prototype for vsnprintf was incorrect, and caused compilation failures
33 on systems that did not have a suitable vsnprintf, but had a declaration in
34 one of the system header files.
35
36 Patch (apply with `patch -p0'):
37
38 *** ../bash-4.1-patched/builtins/printf.def     2009-11-20 15:31:23.000000000 -0500
39 --- ./builtins/printf.def       2010-01-07 08:50:06.000000000 -0500
40 ***************
41 *** 173,177 ****
42   
43   #if !HAVE_VSNPRINTF
44 ! extern int vsnprintf __P((char *, size_t, const char *, ...)) __attribute__((__format__ (printf, 3, 4)));
45   #endif
46   
47 --- 173,177 ----
48   
49   #if !HAVE_VSNPRINTF
50 ! extern int vsnprintf __P((char *, size_t, const char *, va_list)) __attribute__((__format__ (printf, 3, 0)));
51   #endif
52   
53 *** ../bash-4.1-patched/patchlevel.h    2009-10-01 16:39:22.000000000 -0400
54 --- ./patchlevel.h      2010-01-14 09:38:08.000000000 -0500
55 ***************
56 *** 26,30 ****
57      looks for to find the patch level (for the sccs version string). */
58   
59 ! #define PATCHLEVEL 0
60   
61   #endif /* _PATCHLEVEL_H_ */
62 --- 26,30 ----
63      looks for to find the patch level (for the sccs version string). */
64   
65 ! #define PATCHLEVEL 1
66   
67   #endif /* _PATCHLEVEL_H_ */