diff options
author | Moritz Haase <Moritz.Haase@bmw.de> | 2025-07-14 13:26:30 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-07-15 00:25:29 -0700 |
commit | 0cf509d681feefd319192a3135c9a9a137037106 (patch) | |
tree | 59d0bb93d435f9b2d6c3f53a44888418e7a6f9cc | |
parent | 854a178ac26429111f2d1d18c8406ef77c423344 (diff) | |
download | meta-openembedded-0cf509d681feefd319192a3135c9a9a137037106.tar.gz |
libvncserver: upgrade 0.9.14 -> 0.9.15
Also pull in a patch to support builds with CMake 4+ that hasn't made it into a
release yet.
Release notes are available at [0].
[0]: https://github.com/LibVNC/libvncserver/releases/tag/LibVNCServer-0.9.15
Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-graphics/libvncserver/libvncserver/0001-CMake-require-at-least-CMake-3.5.patch | 25 | ||||
-rw-r--r-- | meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.15.bb (renamed from meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.14.bb) | 6 |
2 files changed, 29 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-CMake-require-at-least-CMake-3.5.patch b/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-CMake-require-at-least-CMake-3.5.patch new file mode 100644 index 0000000000..68e3a08acb --- /dev/null +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-CMake-require-at-least-CMake-3.5.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From e64fa928170f22a2e21b5bbd6d46c8f8e7dd7a96 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Matti=20Lehtim=C3=A4ki?= <matti.lehtimaki@jolla.com> | ||
3 | Date: Tue, 13 May 2025 08:37:07 +0300 | ||
4 | Subject: [PATCH] CMake: require at least CMake 3.5 | ||
5 | |||
6 | CMake 4 dropped support for version requirements < 3.5. | ||
7 | |||
8 | Fixes building with CMake >= 4. | ||
9 | |||
10 | Upstream-Status: Backport [e64fa928170f22a2e21b5bbd6d46c8f8e7dd7a96] | ||
11 | Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> | ||
12 | --- | ||
13 | CMakeLists.txt | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
17 | index 205f3928..9b8118c8 100644 | ||
18 | --- a/CMakeLists.txt | ||
19 | +++ b/CMakeLists.txt | ||
20 | @@ -1,4 +1,4 @@ | ||
21 | -cmake_minimum_required(VERSION 3.4) | ||
22 | +cmake_minimum_required(VERSION 3.5) | ||
23 | |||
24 | set(PROJECT_LANGUAGES C) | ||
25 | |||
diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.14.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.15.bb index ff5df428e8..9d2d0a5743 100644 --- a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.14.bb +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.15.bb | |||
@@ -44,8 +44,10 @@ FILES:libvncclient = "${libdir}/libvncclient.*" | |||
44 | 44 | ||
45 | inherit cmake | 45 | inherit cmake |
46 | 46 | ||
47 | SRC_URI = "git://github.com/LibVNC/libvncserver;branch=master;protocol=https" | 47 | SRC_URI = "git://github.com/LibVNC/libvncserver;branch=master;protocol=https;tag=LibVNCServer-${PV} \ |
48 | SRCREV = "10e9eb75f73e973725dc75c373de5d89807af028" | 48 | file://0001-CMake-require-at-least-CMake-3.5.patch \ |
49 | " | ||
50 | SRCREV = "9b54b1ec32731bd23158ca014dc18014db4194c3" | ||
49 | 51 | ||
50 | 52 | ||
51 | EXTRA_OECMAKE = "-DMAKE_INSTALL_LIBDIR=${libdir}" | 53 | EXTRA_OECMAKE = "-DMAKE_INSTALL_LIBDIR=${libdir}" |