glibc/sysdeps/mips/preconfigure
Siddhesh Poyarekar c6cb8783b5 configure: Use autoconf 2.71
Bump autoconf requirement to 2.71 to allow regenerating configure on
more recent distributions.  autoconf 2.71 has been in Fedora since F36
and is the current version in Debian stable (bookworm).  It appears to
be current in Gentoo as well.

All sysdeps configure and preconfigure scripts have also been
regenerated; all changes are trivial transformations that do not affect
functionality.

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
2023-07-17 10:08:10 -04:00

36 lines
1.1 KiB
Plaintext

# This file is generated from configure.ac by Autoconf. DO NOT EDIT!
# Local preconfigure fragment for sysdeps/mips
case "$machine" in
mips*)
abiflag=`$CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | sed -n 's/^#define _MIPS_SIM \(.*\)/\1/p'`
mips16flag=`$CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | sed -n 's/^#define __mips16 \(.*\)/\1/p'`
base_machine=mips
if test "$abiflag" = "_ABIO32" ; then
if test "$mips16flag" = "1" ; then
machine=mips/mips32/mips16
else
machine=mips/mips32
fi
elif test "$abiflag" = "_ABIN32" ; then
machine=mips/mips64/n32
elif test "$abiflag" = "_ABI64" ; then
machine=mips/mips64/n64
else
as_fn_error 1 "Unable to determine ABI." "$LINENO" 5
fi
# $config_machine is not really needed here but the slash after
# $machine is needed by the case statement in
# sysdeps/unix/sysv/linux/mips/configure.ac.
machine=$machine/$config_machine
if test "$abiflag" != "_ABIO32" -a "$mips16flag" = "1"; then
as_fn_error 1 "MIPS16 is only supported with the o32 ABI." "$LINENO" 5
fi
with_fp_cond="defined __mips_hard_float"
;;
esac