]> git.pld-linux.org Git - packages/domoticz.git/blob - gcc12.patch
jsoncpp rebuild
[packages/domoticz.git] / gcc12.patch
1 From 2975b1113d9540f39b6bade3b6d459b61c2e5007 Mon Sep 17 00:00:00 2001
2 From: Arjen de Korte <build+github@de-korte.org>
3 Date: Sun, 15 May 2022 19:00:02 +0200
4 Subject: [PATCH] Fix compilation with GCC12
5
6 Building domoticz fails under GCC12 with the following error:
7
8 In file included from /usr/include/c++/12/utility:68,
9                  from /home/abuild/rpmbuild/BUILD/domoticz-2022.1/main/LuaTable.cpp:10:
10 /usr/include/c++/12/bits/stl_relops.h:86:5: error: template with C linkage
11    86 |     template <class _Tp>
12       |     ^~~~~~~~
13 ---
14  main/LuaTable.cpp | 2 +-
15  1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/main/LuaTable.cpp b/main/LuaTable.cpp
18 index 6475fac6bd..eca7489a42 100644
19 --- a/main/LuaTable.cpp
20 +++ b/main/LuaTable.cpp
21 @@ -6,9 +6,9 @@ extern "C" {
22  #include <lua.h>
23  #include <lualib.h>
24  #include <lauxlib.h>
25 +}
26  
27  #include <utility>
28 -}
29  
30  CLuaTable::CLuaTable(lua_State *lua_state, const std::string &Name)
31  {
This page took 1.824386 seconds and 3 git commands to generate.