mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 14:50:19 +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:
parent
5b4fab1c6e
commit
8b965ad7ba
1 changed files with 9 additions and 2 deletions
|
@ -23,8 +23,15 @@ LT_INIT([win32-dll])
|
||||||
dnl
|
dnl
|
||||||
dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
|
dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
|
||||||
dnl
|
dnl
|
||||||
AC_CYGWIN
|
case $host_os in
|
||||||
AC_MINGW32
|
*cygwin* ) CYGWIN=yes;;
|
||||||
|
* ) CYGWIN=no;;
|
||||||
|
esac
|
||||||
|
case $host_os in
|
||||||
|
*mingw32* ) MINGW32=yes;;
|
||||||
|
* ) MINGW32=no;;
|
||||||
|
esac
|
||||||
|
|
||||||
EXTRA_DEFS=""
|
EXTRA_DEFS=""
|
||||||
if test "$MINGW32" = "yes" ; then
|
if test "$MINGW32" = "yes" ; then
|
||||||
if test $enable_shared = yes ; then
|
if test $enable_shared = yes ; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue