4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-25 08:37:33 +08:00
Mike Frysinger 920617998e libgloss/newlib: rename configure.in to configure.ac
The .in name has been deprecated for a long time in favor of .ac.
2021-09-13 10:14:37 -04:00

32 lines
721 B
Plaintext

dnl This is the newlib/libc/sys configure.in file.
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([newlib],[NEWLIB_VERSION])
AC_CONFIG_SRCDIR([arm])
dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
AC_CONFIG_AUX_DIR(../../../../..)
NEWLIB_CONFIGURE(../../../..)
if test -n "${machine_dir}"; then
case ${machine_dir} in
arm) AC_CONFIG_SUBDIRS(arm) ;;
esirisc) AC_CONFIG_SUBDIRS(esirisc) ;;
i386) AC_CONFIG_SUBDIRS(i386) ;;
powerpc) AC_CONFIG_SUBDIRS(powerpc) ;;
esac;
fi
CRT0=
if test -n "${machine_dir}"; then
CRT0=crt0.o
fi
AC_SUBST(CRT0)
AM_CONDITIONAL(HAVE_MACHINE_DIR, test x${machine_dir} != x)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT