1dnl This is the newlib/libc/machine/i386 configure.in file.
2dnl Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.5)
5AC_INIT(setjmp.S)
6
7dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
8AC_CONFIG_AUX_DIR(../../../..)
9
10NEWLIB_CONFIGURE(../../..)
11
12dnl We have to add the following lines because automake detects the
13dnl references to libtool libraries from aclocal and tries to verify that
14dnl AM_PROG_LIBTOOL is being used.  This code must occur after
15dnl NEWLIB_CONFIGURE.
16
17if test "${use_libtool}" = "yes"; then
18AC_LIBTOOL_WIN32_DLL
19AM_PROG_LIBTOOL
20fi
21
22AM_CONDITIONAL(MACH_ADD_SETJMP, test "x$mach_add_setjmp" = 'xtrue')
23
24AC_OUTPUT(Makefile)
25