bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

View File

@@ -0,0 +1,34 @@
From bb71b21eb9407479ad729b3c858b0fc350fae335 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Sun, 21 Feb 2021 19:39:59 +0100
Subject: [PATCH] CMakeLists.txt: add BUILD_EXAMPLE
Allow the user to disable example
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: backport from upstream]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
---
CMakeLists.txt | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 110d933..c52ab79 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,11 @@ cmake_minimum_required(VERSION 2.8)
project(libuwsc C)
+option(BUILD_EXAMPLE "Build example" ON)
+
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules/")
add_subdirectory(src)
-add_subdirectory(example)
+if(BUILD_EXAMPLE)
+ add_subdirectory(example)
+endif()
--
2.25.1

View File

@@ -0,0 +1,27 @@
From 8cb416140741a596235b8acc46b2b119b13ebfab Mon Sep 17 00:00:00 2001
From: Rosen Penev <rosenp@gmail.com>
Date: Tue, 6 Jul 2021 21:01:52 -0700
Subject: [PATCH] fix bad indentation
Fixes error with GCC11.
[Retrieved from:
https://github.com/zhaojh329/libuwsc/commit/8cb416140741a596235b8acc46b2b119b13ebfab]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
src/lua/uwsc_lua.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lua/uwsc_lua.c b/src/lua/uwsc_lua.c
index de6932e..84689fe 100644
--- a/src/lua/uwsc_lua.c
+++ b/src/lua/uwsc_lua.c
@@ -178,7 +178,7 @@ static int uwsc_lua_on(lua_State *L)
else
luaL_argcheck(L, false, 2, "available event name: open message error close");
- return 0;
+ return 0;
}
static int __uwsc_lua_send(lua_State *L, int op)

View File

@@ -18,7 +18,7 @@ LIBUWSC_CONF_OPTS += \
-DUWSC_USE_MBEDTLS=OFF \
-DUWSC_USE_OPENSSL=ON \
-DUWSC_USE_WOLFSSL=OFF
else ifeq ($(BR2_PACKAGE_WOLFSSL),y)
else ifeq ($(BR2_PACKAGE_WOLFSSL_ALL),y)
LIBUWSC_DEPENDENCIES += wolfssl
LIBUWSC_CONF_OPTS += \
-DUWSC_SSL_SUPPORT=ON \