diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-05-22 17:14:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-05-22 17:14:04 +0000 |
commit | 4e5f9259f352a9547b7cc35d675eac3050ed5803 (patch) | |
tree | 50aca2898371dc89a9df070f1f70dcd89a6cc969 /posix | |
parent | cf06a4e3579d834c3330184c4ff127c98bc00fcc (diff) | |
download | glibc-4e5f9259f352a9547b7cc35d675eac3050ed5803.tar glibc-4e5f9259f352a9547b7cc35d675eac3050ed5803.tar.gz glibc-4e5f9259f352a9547b7cc35d675eac3050ed5803.tar.bz2 glibc-4e5f9259f352a9547b7cc35d675eac3050ed5803.zip |
Restore _POSIX2_C_VERSION definition (bug 438).
My review of conformtest expectations for POSIX showed up that the
_POSIX2_C_VERSION macro, required by POSIX and XPG standards before
2001, was missing in unistd.h, having been removed on 2003-04-03
despite those standards still being supported. This patch adds it
back. As it's in the implementation namespace, there's no need for it
to be conditional, and other such macros aren't conditional in this
header either.
Tested for x86_64 and x86 (testsuite). Note that this *does* change
the installed libraries, because it affects the sysconf support
(present all along) for _SC_2_C_VERSION.
[BZ #438]
* posix/unistd.h (_POSIX2_C_VERSION): New macro.
* conform/Makefile (test-xfail-POSIX/unistd.h/conform): Remove
variable.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/unistd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 80a5b86998..1b52930225 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -66,6 +66,9 @@ __BEGIN_DECLS /* The utilities on GNU systems also correspond to this version. */ #define _POSIX2_VERSION __POSIX2_THIS_VERSION +/* This symbol was required until the 2001 edition of POSIX. */ +#define _POSIX2_C_VERSION __POSIX2_THIS_VERSION + /* If defined, the implementation supports the C Language Bindings Option. */ #define _POSIX2_C_BIND __POSIX2_THIS_VERSION |