diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-11-17 18:36:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-11-17 18:36:05 +0000 |
commit | d8cceb4fcf42c9dd7805b75a8640e15d00dd7ac9 (patch) | |
tree | 2509bdf2a3563d5cddb03fb92b97c1dedee40ad2 /configure.in | |
parent | cae8899646b7acc7e5b27c14624a027f5240787f (diff) | |
download | glibc-d8cceb4fcf42c9dd7805b75a8640e15d00dd7ac9.tar.gz glibc-d8cceb4fcf42c9dd7805b75a8640e15d00dd7ac9.tar.xz glibc-d8cceb4fcf42c9dd7805b75a8640e15d00dd7ac9.zip |
Update.
1998-11-17 Ulrich Drepper <drepper@cygnus.com> * stdio-common/printf_fphex.c (__printf_fphex): Correct printing of denormalized numbers. 1998-10-06 Geoff Keating <geoffk@ozemail.com.au> * sysdeps/powerpc/dl-machine.h (elf_machine_load_address): Suppress another parentheses warning, make nano-optimisation. * sysdeps/powerpc/dl-machine.h (_dl_runtime_resolve): Preserve saved LR on stack so _mcount works. (_dl_prof_resolve): Likewise. * sysdeps/powerpc/register-dump.h: Print FPRs. Adjust for correct signal handler calling convention. * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h: Adjust for correct signal handler calling convention---more like x86 linux and mklinux, less like linux-ppc versions between 2.1 and 2.1.126. 1998-11-17 Ulrich Drepper <drepper@cygnus.com> * configure.in: Correct allowed makeinfo version. 1998-11-17 Philip Blundell <pb@nexus.co.uk> * sysdeps/generic/bits/mathdef.h: Fix typo. * intl/locale.alias: Change `japanese' alias to match X11R6's.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index c3a8e3a2b1..befa6d6da0 100644 --- a/configure.in +++ b/configure.in @@ -451,7 +451,7 @@ AC_CHECK_PROG_VER(MSGFMT, msgfmt gmsgfmt, --version, [0.[1-9][0-9].* | [1-9].*], MSGFMT=: aux_missing=t) AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version, [GNU texinfo.* \([0-9][0-9.]*\)], - [3.1[1-9] | 3.[2-9][0-9]], MAKEINFO=: aux_missing=t) + [1.6[89] | 1.7[0-9]], MAKEINFO=: aux_missing=t) if test -n "$critic_missing"; then AC_MSG_ERROR([ @@ -576,7 +576,7 @@ AC_CACHE_CHECK(for old Debian install-info, libc_cv_old_debian_install_info, echo '* Prog: (prog). Program.' echo 'END-INFO-DIR-ENTRY') >conftest.d/prog.info if $INSTALL_INFO --info-dir=conftest.d conftest.d/prog.info >&AC_FD_CC 2>&1 - then + then if grep -s 'i-d-s works' conftest.d/dir >/dev/null then libc_cv_old_debian_install_info=no else libc_cv_old_debian_install_info=yes |