2018-01-20 10:14:59 +03:00
|
|
|
# -*- Autoconf -*-
|
2018-01-20 10:05:25 +03:00
|
|
|
AC_DEFUN([RUBY_MINGW32],
|
|
|
|
[AS_CASE(["$host_os"],
|
|
|
|
[cygwin*], [
|
|
|
|
AC_CACHE_CHECK(for mingw32 environment, rb_cv_mingw32,
|
2020-12-12 16:55:09 +03:00
|
|
|
[AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
|
2018-01-20 10:05:25 +03:00
|
|
|
#ifndef __MINGW32__
|
|
|
|
# error
|
|
|
|
#endif
|
2020-12-12 16:55:09 +03:00
|
|
|
]])],[rb_cv_mingw32=yes],[rb_cv_mingw32=no])
|
2018-01-20 10:05:25 +03:00
|
|
|
rm -f conftest*])
|
|
|
|
AS_IF([test "$rb_cv_mingw32" = yes], [
|
|
|
|
target_os="mingw32"
|
|
|
|
: ${ac_tool_prefix:="`expr "$CC" : ['\(.*-\)g\?cc[^/]*$']`"}
|
2018-09-04 11:39:14 +03:00
|
|
|
AC_DEFINE(__USE_MINGW_ANSI_STDIO, 1) dnl for gnu_printf
|
2018-01-20 10:05:25 +03:00
|
|
|
])
|
|
|
|
])
|
|
|
|
AS_CASE(["$target_os"], [mingw*msvc], [
|
|
|
|
target_os="`echo ${target_os} | sed 's/msvc$//'`"
|
|
|
|
])
|
|
|
|
AS_CASE(["$target_cpu-$target_os"], [x86_64-mingw*], [
|
|
|
|
target_cpu=x64
|
|
|
|
])
|
|
|
|
])dnl
|