]> sigrok.org Git - libserialport.git/commit
configure.ac: remove broken handling for cygwin as $host_os.
authorMartin Ling <redacted>
Fri, 7 Feb 2020 10:39:00 +0000 (10:39 +0000)
committerMartin Ling <redacted>
Fri, 7 Feb 2020 14:00:35 +0000 (14:00 +0000)
commit75a280a59701f4adb6ab7d32921585aeefced726
tree62b7eea3811695af9827faed131a3a549994541a
parent7b0686ed58811b9cd7d78701887900bfe556f6b0
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.
configure.ac