forked from pool/LibVNCServer
https://github.com/LibVNC/libvncserver/releases/tag/LibVNCServer-0.9.15 * internal code structure cleanup * UTF-8 clipboard handling improvements * HTTP server support for multithreaded VNC servers * Fixed building with OpenSSL >= 3.0.0 - Rebase patches - Fix devel package dependencies. The libraries have public link targets that must be present when LibVNCServer-devel is installed - Add upstream change to fix build failures with CMake 4: * 0001-CMake-require-at-least-CMake-3.5.patch - Spec refresh OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/LibVNCServer?expand=0&rev=71
26 lines
645 B
Diff
26 lines
645 B
Diff
From e64fa928170f22a2e21b5bbd6d46c8f8e7dd7a96 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Matti=20Lehtim=C3=A4ki?= <matti.lehtimaki@jolla.com>
|
|
Date: Tue, 13 May 2025 08:37:07 +0300
|
|
Subject: [PATCH] CMake: require at least CMake 3.5
|
|
|
|
CMake 4 dropped support for version requirements < 3.5.
|
|
|
|
Fixes building with CMake >= 4.
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 205f3928..9b8118c8 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,4 +1,4 @@
|
|
-cmake_minimum_required(VERSION 3.4)
|
|
+cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(PROJECT_LANGUAGES C)
|
|
|
|
--
|
|
2.50.0
|
|
|