diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-16 11:03:57 +0100 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-04-14 19:17:48 +0200 |
commit | c3df3a12aa88739e303340ccd7436d467b4662d2 (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /src/include/ndpi_win32.h | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) |
Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2
* Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/include/ndpi_win32.h')
-rw-r--r-- | src/include/ndpi_win32.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/ndpi_win32.h b/src/include/ndpi_win32.h index 00bebe6ca..7885b13ef 100644 --- a/src/include/ndpi_win32.h +++ b/src/include/ndpi_win32.h @@ -47,18 +47,12 @@ #define _CRT_SECURE_NO_WARNINGS #endif -#define _WS2TCPIP_H_ /* Avoid compilation problems */ - #define IPVERSION 4 /* on *nix it is defined in netinet/ip.h */ #ifndef MIN #define MIN(X, Y) (((X) < (Y)) ? (X) : (Y)) #endif -#ifndef IPPROTO_SCTP -#define IPPROTO_SCTP 132 -#endif - #if defined(__MINGW32__) || defined(__MINGW64__) #undef gettimeofday #define gettimeofday mingw_gettimeofday |