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