4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 11:00:04 +08:00
DJ Delorie b34db572c1 * libc/machine/sh/configure.in: Avoid link tests.
* libc/machine/sh/configure: Regenerate.
2006-04-24 20:19:52 +00:00

24 lines
522 B
Plaintext

dnl This is the newlib/libc/machine/sh 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([asm.h])
dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
AC_CONFIG_AUX_DIR(../../../..)
NEWLIB_CONFIGURE(../../..)
AC_NO_EXECUTABLES
AC_EGREP_CPP([sh5], [
#if __SH5__
sh5
#endif
], [have_sh64=yes], [have_sh64=no])
AM_CONDITIONAL(SH64, [test $have_sh64 = yes])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT