From 354606f46d6695978fea45efd1ef69caaeed8367 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 21 Jan 2024 23:31:11 -0600 Subject: [PATCH] Comment out __TIMESIZE check as mingw64 thinks it is not 64 bits -- so we may not need this https://github.com/Hamlib/Hamlib/issues/1478 --- include/hamlib/rig.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index ead9b06c1..b8ab34946 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -51,9 +51,13 @@ #include #endif +// mingw64 still shows __TIMESIZE != 64 +// need to do more testing +#if 0 #if __TIMESIZE != 64 #warning TIMESIZE != 64 -- Please report your OS system to hamlib-developer@lists.sourceforge.net #endif +#endif // For MSVC install the NUGet pthread package #if defined(_MSC_VER)