mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
Update.
2003-06-02 Ulrich Drepper <drepper@redhat.com> * posix/getconf.c (main): Also recognize names without the __POSIX_ prefix. * elf/Makefile (CFLAGS-dl-lookup.c): Define.
This commit is contained in:
parent
051ed63dd9
commit
bb958f59aa
@ -1,3 +1,10 @@
|
|||||||
|
2003-06-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* posix/getconf.c (main): Also recognize names without the
|
||||||
|
__POSIX_ prefix.
|
||||||
|
|
||||||
|
* elf/Makefile (CFLAGS-dl-lookup.c): Define.
|
||||||
|
|
||||||
2003-06-02 Bernd Schmidt <bernds@redhat.com>
|
2003-06-02 Bernd Schmidt <bernds@redhat.com>
|
||||||
|
|
||||||
* sysdeps/i386/fpu/bits/mathinline.h (sqrt, __sqrtl, ldexp,
|
* sysdeps/i386/fpu/bits/mathinline.h (sqrt, __sqrtl, ldexp,
|
||||||
|
@ -83,6 +83,7 @@ distribute := rtld-Rules \
|
|||||||
check-textrel.c dl-sysdep.h
|
check-textrel.c dl-sysdep.h
|
||||||
|
|
||||||
CFLAGS-dl-runtime.c = -fexceptions -fasynchronous-unwind-tables
|
CFLAGS-dl-runtime.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
|
CFLAGS-dl-lookup.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
|
@ -957,7 +957,9 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
|
|||||||
usage ();
|
usage ();
|
||||||
|
|
||||||
for (c = vars; c->name != NULL; ++c)
|
for (c = vars; c->name != NULL; ++c)
|
||||||
if (!strcmp (c->name, argv[1]))
|
if (strcmp (c->name, argv[1]) == 0
|
||||||
|
|| (strncmp (c->name, "_POSIX_", 7) == 0
|
||||||
|
&& strcmp (c->name + 7, argv[1]) == 0))
|
||||||
{
|
{
|
||||||
long int value;
|
long int value;
|
||||||
size_t clen;
|
size_t clen;
|
||||||
|
Loading…
Reference in New Issue
Block a user