mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1998-12-12 Ulrich Drepper <drepper@cygnus.com> * stdio-common/printf_fp.c: #ifdef out long double handling code if __NO_LONG_DOUBLE_MATH is defined to avoid warnings. * stdio-common/printf_fphex.c: Likewise. * stdio-common/printf-size.c: Likewise. 1998-12-12 Ulrich Drepper <drepper@cygnus.com> * login/Makefile: Install pt_chown using INSTALL_PROGRAM. Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>. Patchess by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
This commit is contained in:
14
ChangeLog
14
ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
1998-12-12 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* stdio-common/printf_fp.c: #ifdef out long double handling code if
|
||||||
|
__NO_LONG_DOUBLE_MATH is defined to avoid warnings.
|
||||||
|
* stdio-common/printf_fphex.c: Likewise.
|
||||||
|
* stdio-common/printf-size.c: Likewise.
|
||||||
|
|
||||||
|
1998-12-12 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* login/Makefile: Install pt_chown using INSTALL_PROGRAM.
|
||||||
|
Patch by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
|
||||||
|
|
||||||
1998-12-11 Ulrich Drepper <drepper@cygnus.com>
|
1998-12-11 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/powerpc/dl-machine.h (elf_machine_matches_host): Mark
|
* sysdeps/powerpc/dl-machine.h (elf_machine_matches_host): Mark
|
||||||
@ -7,7 +19,7 @@
|
|||||||
(elf_machine_plt_value): Likewise.
|
(elf_machine_plt_value): Likewise.
|
||||||
* sysdeps/powerpc/backtrace.c: Include stddef.h to get NULL
|
* sysdeps/powerpc/backtrace.c: Include stddef.h to get NULL
|
||||||
definition.
|
definition.
|
||||||
Patches by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
|
Patchess by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
|
||||||
|
|
||||||
* sysdeps/mips/dl-machine.h (elf_machine_rel): Fixl_addr parameter
|
* sysdeps/mips/dl-machine.h (elf_machine_rel): Fixl_addr parameter
|
||||||
type. Reported by job bogan <job@piquin.uchicago.edu>.
|
type. Reported by job bogan <job@piquin.uchicago.edu>.
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* charmaps/ISO-8859-14: New file.
|
* charmaps/ISO-8859-14: New file.
|
||||||
* charmaps/ISO-8859-15: New file.
|
* charmaps/ISO-8859-15: New file.
|
||||||
|
|
||||||
|
* repertoiremaps/mnemonic.ds: Add the missing mnemonics.
|
||||||
|
|
||||||
1998-12-07 Ulrich Drepper <drepper@cygnus.com>
|
1998-12-07 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* SUPPORTED: Add en_AU.
|
* SUPPORTED: Add en_AU.
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -61,7 +61,7 @@ endif
|
|||||||
# pt_chown needs to be setuid root.
|
# pt_chown needs to be setuid root.
|
||||||
$(inst_libexecdir)/pt_chown: $(objpfx)pt_chown $(+force)
|
$(inst_libexecdir)/pt_chown: $(objpfx)pt_chown $(+force)
|
||||||
$(make-target-directory)
|
$(make-target-directory)
|
||||||
-$(INSTALL) -m 4755 -o root $< $@
|
-$(INSTALL_PROGRAM) -m 4755 -o root $< $@
|
||||||
|
|
||||||
$(objpfx)utmpd: $(utmpd-routines:%=$(objpfx)%.o)
|
$(objpfx)utmpd: $(utmpd-routines:%=$(objpfx)%.o)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Floating point output for `printf'.
|
/* Floating point output for `printf'.
|
||||||
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
|
Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
|
||||||
|
|
||||||
@ -287,6 +287,7 @@ __printf_fp (FILE *fp,
|
|||||||
grouping = NULL;
|
grouping = NULL;
|
||||||
|
|
||||||
/* Fetch the argument value. */
|
/* Fetch the argument value. */
|
||||||
|
#ifndef __NO_LONG_DOUBLE_MATH
|
||||||
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
||||||
{
|
{
|
||||||
fpnum.ldbl = *(const long double *) args[0];
|
fpnum.ldbl = *(const long double *) args[0];
|
||||||
@ -313,6 +314,7 @@ __printf_fp (FILE *fp,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif /* no long double */
|
||||||
{
|
{
|
||||||
fpnum.dbl = *(const double *) args[0];
|
fpnum.dbl = *(const double *) args[0];
|
||||||
|
|
||||||
|
@ -151,6 +151,7 @@ __printf_fphex (FILE *fp,
|
|||||||
|
|
||||||
|
|
||||||
/* Fetch the argument value. */
|
/* Fetch the argument value. */
|
||||||
|
#ifndef __NO_LONG_DOUBLE_MATH
|
||||||
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
||||||
{
|
{
|
||||||
fpnum.ldbl.d = *(const long double *) args[0];
|
fpnum.ldbl.d = *(const long double *) args[0];
|
||||||
@ -170,6 +171,7 @@ __printf_fphex (FILE *fp,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif /* no long double */
|
||||||
{
|
{
|
||||||
fpnum.dbl.d = *(const double *) args[0];
|
fpnum.dbl.d = *(const double *) args[0];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Print size value using units for orders of magnitude.
|
/* Print size value using units for orders of magnitude.
|
||||||
Copyright (C) 1997 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||||
Based on a proposal by Larry McVoy <lm@sgi.com>.
|
Based on a proposal by Larry McVoy <lm@sgi.com>.
|
||||||
@ -123,6 +123,7 @@ printf_size (FILE *fp, const struct printf_info *info, const void *const *args)
|
|||||||
|
|
||||||
|
|
||||||
/* Fetch the argument value. */
|
/* Fetch the argument value. */
|
||||||
|
#ifndef __NO_LONG_DOUBLE_MATH
|
||||||
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
if (info->is_long_double && sizeof (long double) > sizeof (double))
|
||||||
{
|
{
|
||||||
fpnum.ldbl.d = *(const long double *) args[0];
|
fpnum.ldbl.d = *(const long double *) args[0];
|
||||||
@ -147,6 +148,7 @@ printf_size (FILE *fp, const struct printf_info *info, const void *const *args)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif /* no long double */
|
||||||
{
|
{
|
||||||
fpnum.dbl.d = *(const double *) args[0];
|
fpnum.dbl.d = *(const double *) args[0];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user