1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

[build slog] Avoid AC_CYGWIN, AC_MINGW32

* guile-readline/configure.ac: Instead, check ‘$host_os’
and set shell vars ‘CYGWIN’ and ‘MINGW32’ "manually".
This commit is contained in:
Thien-Thi Nguyen 2021-03-08 04:54:23 -05:00
parent 5b4fab1c6e
commit 8b965ad7ba

View file

@ -23,8 +23,15 @@ LT_INIT([win32-dll])
dnl
dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
dnl
AC_CYGWIN
AC_MINGW32
case $host_os in
*cygwin* ) CYGWIN=yes;;
* ) CYGWIN=no;;
esac
case $host_os in
*mingw32* ) MINGW32=yes;;
* ) MINGW32=no;;
esac
EXTRA_DEFS=""
if test "$MINGW32" = "yes" ; then
if test $enable_shared = yes ; then