mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
* abi-tags (*-.*-syllable.*): New match, with ABI value 5.
* elf/cache.c (print_entry): Match the Syllable ABI tag.
This commit is contained in:
parent
e7cbb3a8c2
commit
8e856b5a9a
@ -1,3 +1,8 @@
|
|||||||
|
2005-12-25 Kristian Van Der Vliet <vanders@liqwyd.com>
|
||||||
|
|
||||||
|
* abi-tags (*-.*-syllable.*): New match, with ABI value 5.
|
||||||
|
* elf/cache.c (print_entry): Match the Syllable ABI tag.
|
||||||
|
|
||||||
2006-01-04 Ulrich Drepper <drepper@redhat.com>
|
2006-01-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* include/stdlib.h: Make even more C++ compliant.
|
* include/stdlib.h: Make even more C++ compliant.
|
||||||
|
2
abi-tags
2
abi-tags
@ -26,5 +26,7 @@
|
|||||||
|
|
||||||
.*-.*-knetbsd.*-gnu.* 4 1.6.0 # earliest compatible kernel version
|
.*-.*-knetbsd.*-gnu.* 4 1.6.0 # earliest compatible kernel version
|
||||||
|
|
||||||
|
.*-.*-syllable.* 5 2.0.0 # just an arbitrary value
|
||||||
|
|
||||||
# There is no catch-all default here because every supported OS that uses
|
# There is no catch-all default here because every supported OS that uses
|
||||||
# ELF must have its own unique ABI tag.
|
# ELF must have its own unique ABI tag.
|
||||||
|
@ -107,7 +107,8 @@ print_entry (const char *lib, int flag, unsigned int osversion,
|
|||||||
[2] = "Solaris",
|
[2] = "Solaris",
|
||||||
[3] = "FreeBSD",
|
[3] = "FreeBSD",
|
||||||
[4] = "kNetBSD",
|
[4] = "kNetBSD",
|
||||||
[5] = N_("Unknown OS")
|
[5] = "Syllable",
|
||||||
|
[6] = N_("Unknown OS")
|
||||||
};
|
};
|
||||||
#define MAXTAG (sizeof abi_tag_os / sizeof abi_tag_os[0] - 1)
|
#define MAXTAG (sizeof abi_tag_os / sizeof abi_tag_os[0] - 1)
|
||||||
unsigned int os = osversion >> 24;
|
unsigned int os = osversion >> 24;
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2005-12-27 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* tst-ctype.c (main): Add some casts.
|
||||||
|
|
||||||
|
* tst-mbswcs1.c (main): Make BUF const. Add casts in mbrtowc calls.
|
||||||
|
|
||||||
2006-01-02 Andreas Jaeger <aj@suse.de>
|
2006-01-02 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* locales/fi_FI: Fix date_fmt.
|
* locales/fi_FI: Fix date_fmt.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Test restarting behaviour of mbrtowc.
|
/* Test restarting behaviour of mbrtowc.
|
||||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
Copyright (C) 2000, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Bruno Haible <haible@ilog.fr>.
|
Contributed by Bruno Haible <haible@ilog.fr>.
|
||||||
|
|
||||||
@ -37,7 +37,7 @@
|
|||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
{
|
{
|
||||||
unsigned char buf[6] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb };
|
const unsigned char buf[6] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb };
|
||||||
mbstate_t state;
|
mbstate_t state;
|
||||||
wchar_t wc = 42;
|
wchar_t wc = 42;
|
||||||
size_t n;
|
size_t n;
|
||||||
@ -52,12 +52,12 @@ main (void)
|
|||||||
|
|
||||||
memset (&state, '\0', sizeof (state));
|
memset (&state, '\0', sizeof (state));
|
||||||
|
|
||||||
show (mbrtowc (&wc, buf + 0, 1, &state), 1, 37);
|
show (mbrtowc (&wc, (const char *) buf + 0, 1, &state), 1, 37);
|
||||||
show (mbrtowc (&wc, buf + 1, 1, &state), -2, 37);
|
show (mbrtowc (&wc, (const char *) buf + 1, 1, &state), -2, 37);
|
||||||
show (mbrtowc (&wc, buf + 2, 3, &state), 2, 8364);
|
show (mbrtowc (&wc, (const char *) buf + 2, 3, &state), 2, 8364);
|
||||||
show (mbrtowc (&wc, buf + 4, 1, &state), -2, 8364);
|
show (mbrtowc (&wc, (const char *) buf + 4, 1, &state), -2, 8364);
|
||||||
show (mbrtowc (&wc, buf + 5, 1, &state), 1, 955);
|
show (mbrtowc (&wc, (const char *) buf + 5, 1, &state), 1, 955);
|
||||||
show (mbrtowc (&wc, buf + 5, 1, &state), -1, 955);
|
show (mbrtowc (&wc, (const char *) buf + 5, 1, &state), -1, 955);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user