4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 12:59:21 +08:00
newlib-cygwin/libgloss/i386/acinclude.m4
Mike Frysinger 5200f756cc libgloss: merge i386 configure script up a level
Move the minor i386-specific logic to a dedicated variable so we can
merge its configure logic up a level.
2022-02-16 20:08:55 -05:00

11 lines
176 B
Plaintext

I386_CPPFLAGS=
case "${target}" in
i[[3456]]86-*-coff)
I386_CPPFLAGS="-DCOFF"
;;
i[[3456]]86-*-aout)
I386_CPPFLAGS="-DAOUT"
;;
esac
AC_SUBST(I386_CPPFLAGS)