]>
sigrok.org Git - libserialport.git/commit
configure.ac: remove broken handling for cygwin as $host_os.
I don't think these two mentions of cygwin ever did anything useful.
In fact they stop libserialport being buildable under cygwin.
The first one caused builds on cygwin to try to build windows.c,
which uses the Win32 API, not the POSIX layer provided by cygwin.
The second asserts that enumeration and port metadata are supported
on cygwin, but that isn't the case.
Without these matches for cygwin as $host_os, libserialport builds
and works just fine on old-school cygwin with the original mingw32.
The only reason that MSYS2 worked better is that it uses "msys" as
the $host_os identifier, not cygwin.