You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@bkt0031 - thanks for the fix; I just applied it to the main branch.
However the branch that is most current is called sm5bsz because it follows (it is actually just a copy of) Leif Åsbrink, SM5BSZ, latest subversion revision (currently 1022 from June 12th 2023) from here: svn checkout https://svn.code.sf.net/p/linrad/code/trunk linrad
I use his current code (that contains all my old changes) to build automatically the Windows executables under 'Releases'.
I just looked at his code, and the only reference I see there to __MINGW64_VERSION_MAJOR is the following in the file network.c:
I just attempted to compile this on a new installation of MSYS2 and it failed with:
Looking at that file I find the conditional expression:
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
Looking at MSYS2 version for MINGW64 I see:
My solution was to change the conditional to:
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
For the files: network.c, sdrip.c, openhpsdr.c, afedri.c, and cloudiq.c
The text was updated successfully, but these errors were encountered: