ea4118a3f245650fe7ba4274121443afab075773
[platform/upstream/automake.git] / m4 / mingw.m4
1 # Check to see if we're running under Mingw, without using
2 # AC_CANONICAL_*.  If so, set output variable MINGW32 to "yes".
3 # Otherwise set it to "no".
4
5 dnl AM_MINGW32()
6 AC_DEFUN(AM_MINGW32,
7 [AC_CACHE_CHECK(for Mingw32 environment, am_cv_mingw32,
8 [AC_TRY_COMPILE(,[return __MINGW32__;],
9 am_cv_mingw32=yes, am_cv_mingw32=no)
10 rm -f conftest*])
11 MINGW32=
12 test "$am_cv_mingw32" = yes && MINGW32=yes])