diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-22 06:21:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-22 06:21:54 +0000 |
commit | d20f21a2154de2960b13a67a6acfb78cc7cde13e (patch) | |
tree | aba874c5d8fb516893e55746c63bce4fd9898e0c /posix/confstr.c | |
parent | d290c57b5f8a6cfcdf3e4fded96ced1dc342e525 (diff) | |
download | glibc-d20f21a2154de2960b13a67a6acfb78cc7cde13e.tar glibc-d20f21a2154de2960b13a67a6acfb78cc7cde13e.tar.gz glibc-d20f21a2154de2960b13a67a6acfb78cc7cde13e.tar.bz2 glibc-d20f21a2154de2960b13a67a6acfb78cc7cde13e.zip |
Update.
* sysdeps/generic/bits/confname.h: Add _SC_V6_* and _CS_POSIX_V6_*
values.
* sysdeps/generic/bits/environments.h: Define _POSIX_V6_* values.
* posix/confstr.c: Handle _CS_POSIX_V6_* values.
* posix/getconf.c: Handle _CS_POSIX_V6_* and _SC_V6_* values.
* sysdeps/posix/sysconf.c: Handle _SC_V6_* values.
Diffstat (limited to 'posix/confstr.c')
-rw-r--r-- | posix/confstr.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/posix/confstr.c b/posix/confstr.c index 6ab76e8bed..487e5fe28a 100644 --- a/posix/confstr.c +++ b/posix/confstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1996, 1997, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -45,8 +45,9 @@ confstr (name, buf, len) break; case _CS_XBS5_ILP32_OFFBIG_CFLAGS: + case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS: case _CS_LFS_CFLAGS: -#if defined _XBS5_ILP32_OFF32 && !defined _XBS5_ILP32_OFFBIG +#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"; @@ -79,6 +80,22 @@ confstr (name, buf, len) case _CS_XBS5_LPBIG_OFFBIG_LDFLAGS: case _CS_XBS5_LPBIG_OFFBIG_LIBS: case _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS: + + case _CS_POSIX_V6_ILP32_OFF32_CFLAGS: + case _CS_POSIX_V6_ILP32_OFF32_LDFLAGS: + case _CS_POSIX_V6_ILP32_OFF32_LIBS: + case _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS: + case _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS: + case _CS_POSIX_V6_ILP32_OFFBIG_LIBS: + case _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS: + case _CS_POSIX_V6_LP64_OFF64_CFLAGS: + case _CS_POSIX_V6_LP64_OFF64_LDFLAGS: + case _CS_POSIX_V6_LP64_OFF64_LIBS: + case _CS_POSIX_V6_LP64_OFF64_LINTFLAGS: + case _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS: + case _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS: + case _CS_POSIX_V6_LPBIG_OFFBIG_LIBS: + case _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS: /* GNU libc does not require special actions to use LFS functions. */ string = ""; string_len = 1; |