From 825c8c7367377f9a37d47f841d90fe71ec47514f Mon Sep 17 00:00:00 2001 From: ravic-rs <108307503+ravic-rs@users.noreply.github.com> Date: Tue, 8 Aug 2023 15:19:53 -0700 Subject: [PATCH 1/3] Disable direct.h inclusion Compiler.h for GCC --- src/Compiler/Compiler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Compiler/Compiler.h b/src/Compiler/Compiler.h index 446a8863a..fffa496e9 100644 --- a/src/Compiler/Compiler.h +++ b/src/Compiler/Compiler.h @@ -30,7 +30,9 @@ along with this program. If not, see . #define WIN32_LEAN_AND_MEAN #endif #include +#ifndef __GNUC__ #include +#endif #include #ifndef __SIZEOF_INT__ #define __SIZEOF_INT__ sizeof(int) From ae7830601941ef74a3a224fb2689005f71522e34 Mon Sep 17 00:00:00 2001 From: ravic-rs Date: Tue, 8 Aug 2023 22:20:28 +0000 Subject: [PATCH 2/3] Incremented patch version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 79db070e7..5a635a96c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ endif(NOT CMAKE_BUILD_TYPE) set(VERSION_MAJOR 0) set(VERSION_MINOR 0) -set(VERSION_PATCH 222) +set(VERSION_PATCH 223) option( WITH_LIBCXX From 6cce210b71dd21e4136d0df2f623fa54b9e14d82 Mon Sep 17 00:00:00 2001 From: ravic-rs <108307503+ravic-rs@users.noreply.github.com> Date: Tue, 8 Aug 2023 15:55:51 -0700 Subject: [PATCH 3/3] Update IPCatalog.h --- src/IPGenerate/IPCatalog.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IPGenerate/IPCatalog.h b/src/IPGenerate/IPCatalog.h index 9db013843..dd029adf1 100644 --- a/src/IPGenerate/IPCatalog.h +++ b/src/IPGenerate/IPCatalog.h @@ -37,7 +37,9 @@ along with this program. If not, see . #define WIN32_LEAN_AND_MEAN #endif #include +#ifndef __GNUC__ #include +#endif #include #ifndef __SIZEOF_INT__ #define __SIZEOF_INT__ sizeof(int)