patches/glibc/2.1.3/el.po.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 17:48:32 2007 +0000 (2007-05-08)
changeset 78 c3868084d81a
permissions -rw-r--r--
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);

Shut uClibc finish step: there really is nothing to do;

Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);

Did not catch the make errors: fixed the pattern matching in scripts/functions;

Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;

Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
yann@1
     1
From
yann@1
     2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/po/Makefile.diff?r1=1.17&r2=1.18&cvsroot=glibc
yann@1
     3
yann@1
     4
Fixes error
yann@1
     5
  msgfmt -o el.mo el.po
yann@1
     6
  el.po:538:31: invalid multibyte sequence
yann@1
     7
  el.po:539:21: invalid multibyte sequence
yann@1
     8
  el.po:1537:38: invalid multibyte sequence
yann@1
     9
  msgfmt: found 3 fatal errors
yann@1
    10
  make[2]: *** [el.mo] Error 1
yann@1
    11
  make[2]: Leaving directory
yann@1
    12
  `/home/dkegel/wk/crosstool-0.25/build/i686-unknown-linux-gnu/gcc-2.95.3-glibc-2.1.3/glibc-2.1.3/po'
yann@1
    13
yann@1
    14
===================================================================
yann@1
    15
RCS file: /cvs/glibc/libc/po/Makefile,v
yann@1
    16
retrieving revision 1.17
yann@1
    17
retrieving revision 1.18
yann@1
    18
diff -u -r1.17 -r1.18
yann@1
    19
--- libc/po/Makefile	1999/09/13 08:48:40	1.17
yann@1
    20
+++ libc/po/Makefile	2001/04/20 04:45:54	1.18
yann@1
    21
@@ -1,4 +1,4 @@
yann@1
    22
-# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
yann@1
    23
+# Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
yann@1
    24
 # This file is part of the GNU C Library.
yann@1
    25
 
yann@1
    26
 # The GNU C Library is free software; you can redistribute it and/or
yann@1
    27
@@ -20,8 +20,12 @@
yann@1
    28
 
yann@1
    29
 subdir := po
yann@1
    30
 
yann@1
    31
+# List of languages that are currently broken (just run msgfmt from
yann@1
    32
+# GNU gettext 0.10.36 on them to see why)
yann@1
    33
+BROKEN_LINGUAS = el
yann@1
    34
+
yann@1
    35
 # List of languages for which we have message catalogs of translations.
yann@1
    36
-ALL_LINGUAS := $(basename $(wildcard *.po))
yann@1
    37
+ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po)))
yann@1
    38
 
yann@1
    39
 # You can override this in configparms or the make command line to limit
yann@1
    40
 # the languages which get installed.