source: scripts/patches/glibc-2.3.4-allow-gcc-4.0-iconvdata.patch @ d7f7ff5

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d7f7ff5 was 7f65c0e, checked in by Jim Gifford <clfs@…>, 18 years ago

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[617118d]1Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
2Date: 2005-05-03
3Initial Package Version: 2.3.4
4Origin: Dan Kegel's crosstool ( http://kegel.com/crosstool/ )
5Upstream Status: Fixed in glibc cvs ( libc/iconvdata/jis0208.h -r1.10 )
6Description: (struct jisx0208_ucs_idx): Move before use
7
8See http://sources.redhat.com/ml/libc-hacker/2005-02/msg00000.html
9and http://www.mail-archive.com/pld-cvs-commit@pld-linux.org/msg00229.html
10
11Fixes
12  In file included from jis0208.c:23:
13  jis0208.h:32: error: array type has incomplete element type
14when building glibc with gcc-4.0
15The bug has been present since at least glibc-2.2.5.
16This patch applies cleanly to glibc-2.3.4
17
18--- /home/dank/downloads/glibc-2.3-20050307/iconvdata/jis0208.h 2003-06-11 14:40:42.000000000 -0700
19+++ glibc-2.3-20050307/iconvdata/jis0208.h      2005-03-13 20:55:01.784054760 -0800
20@@ -24,15 +24,6 @@
21 #include <gconv.h>
22 #include <stdint.h>
23 
24-/* Conversion table.  */
25-extern const uint16_t __jis0208_to_ucs[];
26-
27-extern const char __jisx0208_from_ucs4_lat1[256][2];
28-extern const char __jisx0208_from_ucs4_greek[0xc1][2];
29-extern const struct jisx0208_ucs_idx __jisx0208_from_ucs_idx[];
30-extern const char __jisx0208_from_ucs_tab[][2];
31-
32-
33 /* Struct for table with indeces in UCS mapping table.  */
34 struct jisx0208_ucs_idx
35 {
36@@ -42,6 +33,15 @@
37 };
38 
39 
40+/* Conversion table.  */
41+extern const uint16_t __jis0208_to_ucs[];
42+
43+extern const char __jisx0208_from_ucs4_lat1[256][2];
44+extern const char __jisx0208_from_ucs4_greek[0xc1][2];
45+extern const struct jisx0208_ucs_idx __jisx0208_from_ucs_idx[];
46+extern const char __jisx0208_from_ucs_tab[][2];
47+
48+
49 static inline uint32_t
50 __attribute ((always_inline))
51 jisx0208_to_ucs4 (const unsigned char **s, size_t avail, unsigned char offset)
Note: See TracBrowser for help on using the repository browser.