Re: configure.ac needs a change for MinGW

2016-07-16 Thread Andy Wingo
On Fri 15 Jul 2016 21:10, Eli Zaretskii  writes:

> win32-uname.[ch] were renamed in Guile 2.0.12, but configure.ac still
> references them:
>
>   case $host in
> *-*-mingw*)
>   AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
>   [Define if you have the  header file.])])
>   AC_CHECK_LIB(ws2_32, main)
>   AC_LIBOBJ([win32-uname])  <
>
> This causes a fatal error during the build with MinGW.

Fixed, thanks.

If you don't mind, it's sufficient to just mail guile-devel; please
leave me out of the "To" field for new threads.  Cheers :)

Andy



configure.ac needs a change for MinGW

2016-07-15 Thread Eli Zaretskii
win32-uname.[ch] were renamed in Guile 2.0.12, but configure.ac still
references them:

  case $host in
*-*-mingw*)
  AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
[Define if you have the  header file.])])
  AC_CHECK_LIB(ws2_32, main)
  AC_LIBOBJ([win32-uname])  <

This causes a fatal error during the build with MinGW.