summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Eggers <ceggers@arri.de>2024-06-27 10:52:55 +0200
committerKhem Raj <raj.khem@gmail.com>2024-06-28 11:22:04 -0700
commitfbf1dd7913e0bab996eebc8e93b82b83d39bc7a6 (patch)
tree5455c81fba44d12790ac3975b75f9512dd9599b9
parenta5e9d152bd398ae2210ccdd8d4a7c8091841e264 (diff)
downloadmeta-openembedded-fbf1dd7913e0bab996eebc8e93b82b83d39bc7a6.tar.gz
lvgl: fix version in shared library file name
The version in the patch file needs to be updated. Fixes: 0c19e65a0969 ("lvgl: Update to 9.1.0") Signed-off-by: Christian Eggers <ceggers@arri.de> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch b/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
index 6997d84153..64468313a3 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
@@ -7,7 +7,7 @@ Add missing version suffix to shared libraries. Currently the filename of
7generated shared libraries is only liblvgl.so, which prevents coexistence 7generated shared libraries is only liblvgl.so, which prevents coexistence
8of different versions of LVGL on the same system. Set VERSION and SOVERSION 8of different versions of LVGL on the same system. Set VERSION and SOVERSION
9to make cmake add the version suffix to generated shared libraries. That 9to make cmake add the version suffix to generated shared libraries. That
10changes the filename to liblvgl.so.9.0.0 and includes symlink with major 10changes the filename to liblvgl.so.9.1.0 and includes symlink with major
11ABI version, i.e. liblvgl.so.9 . 11ABI version, i.e. liblvgl.so.9 .
12 12
13Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5865] 13Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5865]
@@ -21,7 +21,7 @@ index 9800468eb..6f33f1cc8 100644
21--- a/env_support/cmake/custom.cmake 21--- a/env_support/cmake/custom.cmake
22+++ b/env_support/cmake/custom.cmake 22+++ b/env_support/cmake/custom.cmake
23@@ -1,3 +1,6 @@ 23@@ -1,3 +1,6 @@
24+set(LVGL_VERSION "9.0.0") 24+set(LVGL_VERSION "9.1.0")
25+set(LVGL_SOVERSION "9") 25+set(LVGL_SOVERSION "9")
26+ 26+
27 # Option to define LV_LVGL_H_INCLUDE_SIMPLE, default: ON 27 # Option to define LV_LVGL_H_INCLUDE_SIMPLE, default: ON