* locales/ms_MY: Fix entries for Tue and Wednesday.

Patch by "Hasbullah Pit (sebol)" <sebol@ikhlas.com>.
2001-05-14  Andreas Jaeger  <aj@suse.de>

	* locales/ms_MY: Fix entries for Tue and Wednesday.
	Patch by "Hasbullah Pit (sebol)" <sebol@ikhlas.com>.
This commit is contained in:
Andreas Jaeger 2001-05-14 08:05:09 +00:00
parent 74f7eecd5f
commit 9c3bb910f2
4 changed files with 18 additions and 11 deletions

View File

@ -1,3 +1,8 @@
2001-05-14 Andreas Jaeger <aj@suse.de>
* locales/ms_MY: Fix entries for Tue and Wednesday.
Patch by "Hasbullah Pit (sebol)" <sebol@ikhlas.com>.
2001-04-18 Jakub Jelinek <jakub@redhat.com> 2001-04-18 Jakub Jelinek <jakub@redhat.com>
* locales/be_BY: Fix syntax in LC_COLLATE section. * locales/be_BY: Fix syntax in LC_COLLATE section.

View File

@ -90,13 +90,13 @@ LC_TIME
% %
% Abbreviated weekday names (%a) % Abbreviated weekday names (%a)
abday "<U0041><U0068><U0061>";"<U0049><U0073><U006E>";/ abday "<U0041><U0068><U0061>";"<U0049><U0073><U006E>";/
"<U0053><U0065><U0069>";"<U0052><U0061><U0062>";/ "<U0053><U0065><U006C>";"<U0052><U0061><U0062>";/
"<U004B><U0068><U0061>";"<U004A><U0075><U006D>";/ "<U004B><U0068><U0061>";"<U004A><U0075><U006D>";/
"<U0053><U0061><U0062>" "<U0053><U0061><U0062>"
% %
% Full weekday names (%A) % Full weekday names (%A)
day "<U0041><U0068><U0061><U0064>";"<U0049><U0073><U006E><U0069><U006E>";/ day "<U0041><U0068><U0061><U0064>";"<U0049><U0073><U006E><U0069><U006E>";/
"<U0053><U0065><U006C><U0061><U0073><U0061>";"<U0052><U0061><U0068><U0075>";/ "<U0053><U0065><U006C><U0061><U0073><U0061>";"<U0052><U0061><U0068><U0062>";/
"<U004B><U0068><U0061><U006D><U0069><U0073>";"<U004A><U0075><U006D><U0061><U0061><U0074>";/ "<U004B><U0068><U0061><U006D><U0069><U0073>";"<U004A><U0075><U006D><U0061><U0061><U0074>";/
"<U0053><U0061><U0062><U0074><U0075>" "<U0053><U0061><U0062><U0074><U0075>"
% %

View File

@ -495,12 +495,14 @@ switches via @var{CFLAGS}.
@cindex upgrading from libc5 @cindex upgrading from libc5
@cindex kernel header files @cindex kernel header files
If you are installing GNU libc on a Linux system, you need to have If you are installing GNU libc on a Linux system, you need to have the
the header files from a 2.2 kernel around for reference. You do not header files from a 2.2 or newer kernel around for reference. For some
need to use the 2.2 kernel, just have its headers where glibc can access architectures, like ia64, sh and hppa, you need at least headers from
at them. The easiest way to do this is to unpack it in a directory kernel 2.3.99 (sh and hppa) or 2.4.0 (ia64). You do not need to use
such as @file{/usr/src/linux-2.2.1}. In that directory, run that kernel, just have its headers where glibc can access at them. The
@samp{make config} and accept all the defaults. Then run @samp{make easiest way to do this is to unpack it in a directory such as
@file{/usr/src/linux-2.2.1}. In that directory, run @samp{make config}
and accept all the defaults. Then run @samp{make
include/linux/version.h}. Finally, configure glibc with the option include/linux/version.h}. Finally, configure glibc with the option
@samp{--with-headers=/usr/src/linux-2.2.1/include}. Use the most recent @samp{--with-headers=/usr/src/linux-2.2.1/include}. Use the most recent
kernel you can get your hands on. kernel you can get your hands on.

View File

@ -90,6 +90,6 @@ static long double one=1.0, two=2.0, tiny = 1.0e-4900L;
} else { } else {
z = one - tiny; /* raised inexact flag */ z = one - tiny; /* raised inexact flag */
} }
return (se>0x7fff)? -z: z; return (se&0x8000)? -z: z;
} }
weak_alias (__tanhl, tanhl) weak_alias (__tanhl, tanhl)