mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-02 13:59:59 +00:00
lvgl: fix version in shared library file name
The version in the patch file needs to be updated.
Fixes: 0c19e65a09 ("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>
This commit is contained in:
committed by
Khem Raj
parent
a5e9d152bd
commit
fbf1dd7913
+2
-2
@@ -7,7 +7,7 @@ Add missing version suffix to shared libraries. Currently the filename of
|
|||||||
generated shared libraries is only liblvgl.so, which prevents coexistence
|
generated shared libraries is only liblvgl.so, which prevents coexistence
|
||||||
of different versions of LVGL on the same system. Set VERSION and SOVERSION
|
of different versions of LVGL on the same system. Set VERSION and SOVERSION
|
||||||
to make cmake add the version suffix to generated shared libraries. That
|
to make cmake add the version suffix to generated shared libraries. That
|
||||||
changes the filename to liblvgl.so.9.0.0 and includes symlink with major
|
changes the filename to liblvgl.so.9.1.0 and includes symlink with major
|
||||||
ABI version, i.e. liblvgl.so.9 .
|
ABI version, i.e. liblvgl.so.9 .
|
||||||
|
|
||||||
Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5865]
|
Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5865]
|
||||||
@@ -21,7 +21,7 @@ index 9800468eb..6f33f1cc8 100644
|
|||||||
--- a/env_support/cmake/custom.cmake
|
--- a/env_support/cmake/custom.cmake
|
||||||
+++ b/env_support/cmake/custom.cmake
|
+++ b/env_support/cmake/custom.cmake
|
||||||
@@ -1,3 +1,6 @@
|
@@ -1,3 +1,6 @@
|
||||||
+set(LVGL_VERSION "9.0.0")
|
+set(LVGL_VERSION "9.1.0")
|
||||||
+set(LVGL_SOVERSION "9")
|
+set(LVGL_SOVERSION "9")
|
||||||
+
|
+
|
||||||
# Option to define LV_LVGL_H_INCLUDE_SIMPLE, default: ON
|
# Option to define LV_LVGL_H_INCLUDE_SIMPLE, default: ON
|
||||||
|
|||||||
Reference in New Issue
Block a user