mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
Update.
2001-04-30 Jakub Jelinek <jakub@redhat.com> * posix/confstr.c (confstr) [_CS_V6_WIDTH_RESTRICTED_ENVS]: Move so that _CS_LFS_CFLAGS can fall through to the empty returned string case. Add FALLTHROUGH comment.
This commit is contained in:
parent
b7dd38e6e7
commit
2c179ef013
@ -1,3 +1,9 @@
|
||||
2001-04-30 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* posix/confstr.c (confstr) [_CS_V6_WIDTH_RESTRICTED_ENVS]: Move so
|
||||
that _CS_LFS_CFLAGS can fall through to the empty returned string
|
||||
case. Add FALLTHROUGH comment.
|
||||
|
||||
2001-04-29 Ralf Baechle <ralf@gnu.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/mips/bits/sem.h: Make structure
|
||||
|
@ -44,19 +44,6 @@ confstr (name, buf, len)
|
||||
}
|
||||
break;
|
||||
|
||||
case _CS_XBS5_ILP32_OFFBIG_CFLAGS:
|
||||
case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS:
|
||||
case _CS_LFS_CFLAGS:
|
||||
#if _XBS5_LP64_OFF64 == -1 && _XBS5_LPBIG_OFFBIG == -1 && _XBS5_ILP32_OFFBIG == 1
|
||||
/* Signal that we want the new ABI. */
|
||||
{
|
||||
static const char file_offset[] = "-D_FILE_OFFSET_BITS=64";
|
||||
string = file_offset;
|
||||
string_len = sizeof (file_offset);
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case _CS_V6_WIDTH_RESTRICTED_ENVS:
|
||||
/* We have to return a newline-separated list of named of
|
||||
programming environements in which the widths of blksize_t,
|
||||
@ -95,6 +82,20 @@ confstr (name, buf, len)
|
||||
}
|
||||
break;
|
||||
|
||||
case _CS_XBS5_ILP32_OFFBIG_CFLAGS:
|
||||
case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS:
|
||||
case _CS_LFS_CFLAGS:
|
||||
#if _XBS5_LP64_OFF64 == -1 && _XBS5_LPBIG_OFFBIG == -1 && _XBS5_ILP32_OFFBIG == 1
|
||||
/* Signal that we want the new ABI. */
|
||||
{
|
||||
static const char file_offset[] = "-D_FILE_OFFSET_BITS=64";
|
||||
string = file_offset;
|
||||
string_len = sizeof (file_offset);
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
/* FALLTHROUGH */
|
||||
|
||||
case _CS_LFS_LINTFLAGS:
|
||||
case _CS_LFS_LDFLAGS:
|
||||
case _CS_LFS_LIBS:
|
||||
|
Loading…
Reference in New Issue
Block a user