forked from hjl-tools/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1999-09-13 Ulrich Drepper <[email protected]> * locale/langinfo.h: Remove byte-order dependent names. * locale/categories.def: Update after removal of byte-order dependent names. * locale/loadlocale.c (_nl_load_locale): Don't allow locale files with magic number in other byte order. * locale/newlocale.c (__newlocale): Remove byte-order dependent code. * locale/C-collate.c: Remove initializers for other byte-order. * locale/C-ctype.c: Likewise. * locale/C-monetary.c: Likewise. * locale/C-paper.c: Likewise. * locale/C-time.c: Likewise. * locale/lc-collate.c: Remove byte-order oriented initialization. * locale/lc-ctype.c: Likewise. * locale/lc-monetary.c: Likewise. * locale/lc-time.c: Likewise. * locale/programs/ld-address.c: Don't generate output in both byte-orders. * locale/programs/ld-ctype.c: Likewise. * locale/programs/ld-paper.c: Likewise. * locale/programs/ld-time.c: Likewise. * time/strftime.c (NLW): Don't use different byte-orders. * wctype/cname-lookup.h (cname_lookup): Likewise. * Makeconfig (localedir): Define using libdir, not datadir. (msgcatdir): New variable. * catgets/Makefile (CPPFLAGS): Define NLSPATH using msgcatdir. * elf/Makefile (bash-ldd-rewrite): Replace @TEXTDOMAINDIR@ using msgcatdir. * intl/Makefile (install-others): Install locale.alias in msgcatdir. (CPPFLAGS): Define paths using msgcatdir. * locale/Makefile (CPPFLAGS): Define LOCALE_ALIAS_PATH using msgcatdir. * po/Makefile (mo-installed): Define using msgcatdir. * sysdeps/unix/sysv/linux/net/if_arp.h: Fix typo.
- Loading branch information
Ulrich Drepper
committed
Sep 13, 1999
1 parent
3e95f66
commit 4a33c2f
Showing
31 changed files
with
363 additions
and
1,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
List of known bugs (certainly very incomplete) | ||
---------------------------------------------- | ||
|
||
Time-stamp: <1999-07-29T15:25:53-0700 drepper> | ||
Time-stamp: <1999-09-13T02:02:34-0700 drepper> | ||
|
||
This following list contains those bugs which I'm aware of. Please | ||
make sure that bugs you report are not listed here. If you can fix one | ||
|
@@ -39,26 +39,12 @@ Severity: [ *] to [***] | |
symbols in <linux/limits.h> available. | ||
[PR libc/140] | ||
|
||
[ *] The localedef program should not generate errors if for categories | ||
which are not used for the output there are characters referenced | ||
which are not defined in the charmap. | ||
[PR libc/229] | ||
|
||
[ *] When assembling a locale definition, that uses the "copy" | ||
directive, with localedef, not only the copied category is | ||
checked for errors, but the whole file containing the same | ||
category. | ||
[PR libc/207 and PR libc/454] | ||
|
||
[ *] The libm-ieee `gamma' function gives wrong results (at least for | ||
-0.5). | ||
|
||
[ *] The libm-ieee `scalb' function gives wrong results for | ||
non-integral second parameters. | ||
|
||
[ *] The strftime() implementation cannot handle multibyte locales really | ||
good since the TOLOWER and TOUPPER are not prepared. | ||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Ulrich Drepper | ||
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
1999-09-13 Ulrich Drepper <[email protected]> | ||
|
||
* locale/langinfo.h: Remove byte-order dependent names. | ||
* locale/categories.def: Update after removal of byte-order dependent | ||
names. | ||
* locale/loadlocale.c (_nl_load_locale): Don't allow locale files | ||
with magic number in other byte order. | ||
* locale/newlocale.c (__newlocale): Remove byte-order dependent code. | ||
* locale/C-collate.c: Remove initializers for other byte-order. | ||
* locale/C-ctype.c: Likewise. | ||
* locale/C-monetary.c: Likewise. | ||
* locale/C-paper.c: Likewise. | ||
* locale/C-time.c: Likewise. | ||
* locale/lc-collate.c: Remove byte-order oriented initialization. | ||
* locale/lc-ctype.c: Likewise. | ||
* locale/lc-monetary.c: Likewise. | ||
* locale/lc-time.c: Likewise. | ||
* locale/programs/ld-address.c: Don't generate output in both | ||
byte-orders. | ||
* locale/programs/ld-ctype.c: Likewise. | ||
* locale/programs/ld-paper.c: Likewise. | ||
* locale/programs/ld-time.c: Likewise. | ||
* time/strftime.c (NLW): Don't use different byte-orders. | ||
* wctype/cname-lookup.h (cname_lookup): Likewise. | ||
|
||
* Makeconfig (localedir): Define using libdir, not datadir. | ||
(msgcatdir): New variable. | ||
* catgets/Makefile (CPPFLAGS): Define NLSPATH using msgcatdir. | ||
* elf/Makefile (bash-ldd-rewrite): Replace @TEXTDOMAINDIR@ using | ||
msgcatdir. | ||
* intl/Makefile (install-others): Install locale.alias in msgcatdir. | ||
(CPPFLAGS): Define paths using msgcatdir. | ||
* locale/Makefile (CPPFLAGS): Define LOCALE_ALIAS_PATH using msgcatdir. | ||
* po/Makefile (mo-installed): Define using msgcatdir. | ||
|
||
* sysdeps/unix/sysv/linux/net/if_arp.h: Fix typo. | ||
|
||
1999-09-12 Ulrich Drepper <[email protected]> | ||
|
||
* stdio-common/vfprintf.c: Remove limitation on size of precision | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* Copyright (C) 1998 Free Software Foundation, Inc. | ||
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ulrich Drepper <[email protected]>, 1998. | ||
|
@@ -29,11 +29,9 @@ const struct locale_data _nl_C_LC_PAPER = | |
_nl_C_name, | ||
NULL, 0, 0, /* no file mapped */ | ||
UNDELETABLE, | ||
4, | ||
2, | ||
{ | ||
{ word: 297 }, | ||
{ word: 297 }, | ||
{ word: 210 }, | ||
{ word: 210 } | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.