mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
5200f756cc
Move the minor i386-specific logic to a dedicated variable so we can merge its configure logic up a level.
11 lines
176 B
Plaintext
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)
|