mirror of git://sourceware.org/git/glibc.git
Update.
1999-08-15 Ulrich Drepper <drepper@cygnus.com> * localedata/locales/ca_ES: New file. Contributed by Joan Carles Soler <Joan.Soler@uv.es>. * SUPPORTED: Add ca_ES.
This commit is contained in:
parent
ed9c47d90b
commit
7506cf98e6
|
|
@ -26,6 +26,7 @@
|
||||||
# it with the rest of us. Send it using the `glibcbug' script to
|
# it with the rest of us. Send it using the `glibcbug' script to
|
||||||
# bugs@gnu.org.
|
# bugs@gnu.org.
|
||||||
|
|
||||||
|
catalan ca_ES.ISO-8859-1
|
||||||
croatian hr_HR.ISO-8859-2
|
croatian hr_HR.ISO-8859-2
|
||||||
czech cs_CZ.ISO-8859-2
|
czech cs_CZ.ISO-8859-2
|
||||||
danish da_DK.ISO-8859-1
|
danish da_DK.ISO-8859-1
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
1999-08-15 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* localedata/locales/ca_ES: New file.
|
||||||
|
Contributed by Joan Carles Soler <Joan.Soler@uv.es>.
|
||||||
|
|
||||||
|
* SUPPORTED: Add ca_ES.
|
||||||
|
|
||||||
1999-05-18 Ulrich Drepper <drepper@cygnus.com>
|
1999-05-18 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* Makefile (LOCALEDEF): Add I18NPATH definition to find the
|
* Makefile (LOCALEDEF): Add I18NPATH definition to find the
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# This file names the currently supported and somewhat tested locales.
|
# This file names the currently supported and somewhat tested locales.
|
||||||
# If you have any additions please use the glibcbug script to send an
|
# If you have any additions please use the glibcbug script to send an
|
||||||
# appropriate message.
|
# appropriate message.
|
||||||
|
ca_ES ISO-8859-1
|
||||||
cs_CZ ISO-8859-2
|
cs_CZ ISO-8859-2
|
||||||
da_DK ISO-8859-1
|
da_DK ISO-8859-1
|
||||||
de_AT ISO-8859-1
|
de_AT ISO-8859-1
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -169,9 +169,10 @@ compile but use what you say instead of guessing what your system is.
|
||||||
This is most useful to change the CPU submodel. For example, if
|
This is most useful to change the CPU submodel. For example, if
|
||||||
configure guesses your machine as @code{i586-pc-linux-gnu} but you want
|
configure guesses your machine as @code{i586-pc-linux-gnu} but you want
|
||||||
to compile a library optimized for 386es, give
|
to compile a library optimized for 386es, give
|
||||||
@samp{--host=i386-pc-linux-gnu} or just @samp{--host=i386-linux}. (A
|
@samp{--host=i386-pc-linux-gnu} or just @samp{--host=i386-linux} and add
|
||||||
library compiled for a Pentium (@code{i586}) will still work on a 386,
|
the appropriate compiler flags (@samp{-mcpu=i386} will do the trick) to
|
||||||
but it may be slower.)
|
@var{CFLAGS}. (A library compiled for a Pentium (@code{i586}) will still
|
||||||
|
work on a 386, but it may be slower.)
|
||||||
|
|
||||||
If you give just @samp{--build}, configure will get confused.
|
If you give just @samp{--build}, configure will get confused.
|
||||||
@end table
|
@end table
|
||||||
|
|
@ -419,11 +420,14 @@ maintainers by sending electronic mail to @email{bug-glibc@@gnu.org}.
|
||||||
|
|
||||||
Each case of @samp{i@var{x}86} can be @samp{i386}, @samp{i486},
|
Each case of @samp{i@var{x}86} can be @samp{i386}, @samp{i486},
|
||||||
@samp{i586}, or @samp{i686}. All of those configurations produce a
|
@samp{i586}, or @samp{i686}. All of those configurations produce a
|
||||||
library that can run on any of these processors. The library will be
|
library that can run on any of these processors if the compiler is
|
||||||
optimized for the specified processor, but will not use instructions not
|
configured correctly. The GCC compiler by default generates code
|
||||||
available on all of them. If you want the library to use instructions
|
that's optimized for the machine it's configured for and will use the
|
||||||
only available on newer processors, give GCC the appropriate @samp{-m}
|
instructions available on that machine. For example if your GCC is
|
||||||
switches via @var{CFLAGS}.
|
configured for @samp{i686}, gcc will optimize for @samp{i686} and
|
||||||
|
might issue some @samp{i686} specific instructions. To generate code
|
||||||
|
for other models you should give GCC the appropriate @samp{-march=}
|
||||||
|
and @samp{-mcpu=} compiler switches via @var{CFLAGS}.
|
||||||
|
|
||||||
@node Linux
|
@node Linux
|
||||||
@appendixsec Specific advice for Linux systems
|
@appendixsec Specific advice for Linux systems
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -20,6 +20,8 @@
|
||||||
# define _WINT_T
|
# define _WINT_T
|
||||||
typedef unsigned int wint_t;
|
typedef unsigned int wint_t;
|
||||||
#endif
|
#endif
|
||||||
|
#define __need_mbstate_t
|
||||||
|
#include <wchar.h>
|
||||||
#define _G_size_t size_t
|
#define _G_size_t size_t
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue