Skip to content

Commit

Permalink
change MINGW64_VERSION_MINOR check as suggested here #3
Browse files Browse the repository at this point in the history
  • Loading branch information
fventuri committed Sep 30, 2023
1 parent 56542c5 commit ce7536a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion afedri.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#define RECV_FLAG 0
#define INVSOCK INVALID_SOCKET
#define CLOSE_FD closesocket
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
typedef struct{
struct in_addr imr_multiaddr; /* IP multicast address of group */
struct in_addr imr_interface; /* local IP address of interface */
Expand Down
2 changes: 1 addition & 1 deletion cloudiq.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#define RECV_FLAG 0
#define INVSOCK INVALID_SOCKET
#define CLOSE_FD closesocket
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
typedef struct{
struct in_addr imr_multiaddr; // IP multicast address of group
struct in_addr imr_interface; // local IP address of interface
Expand Down
2 changes: 1 addition & 1 deletion network.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#include <windows.h>
#include "wscreen.h"
#define RECV_FLAG 0
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
typedef struct{
struct in_addr imr_multiaddr; /* IP multicast address of group */
struct in_addr imr_interface; /* local IP address of interface */
Expand Down
2 changes: 1 addition & 1 deletion openhpsdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#include <windows.h>
#include "wscreen.h"
#define RECV_FLAG 0
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
typedef struct{
struct in_addr imr_multiaddr; /* IP multicast address of group */
struct in_addr imr_interface; /* local IP address of interface */
Expand Down
2 changes: 1 addition & 1 deletion sdrip.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#define RECV_FLAG 0
#define INVSOCK INVALID_SOCKET
#define CLOSE_FD closesocket
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR != 11
#if !defined __MINGW64_VERSION_MAJOR || __MINGW64_VERSION_MAJOR < 11
typedef struct{
struct in_addr imr_multiaddr; /* IP multicast address of group */
struct in_addr imr_interface; /* local IP address of interface */
Expand Down

0 comments on commit ce7536a

Please sign in to comment.