diff options
author | Alper Ak <alperyasinak1@gmail.com> | 2025-07-09 20:30:54 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-07-09 13:35:20 -0700 |
commit | d88665da77a0857b51173182c121d99fa5f0c071 (patch) | |
tree | cc5dd95e02f6478658ccb80702cb37b53241323e | |
parent | 77069ed2cfaeed05dfae831626c0380f9cf8deaf (diff) | |
download | meta-openembedded-d88665da77a0857b51173182c121d99fa5f0c071.tar.gz |
libcyusbserial: Add patch for CMake 4+ compatibility
Fix:
| CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
| Compatibility with CMake < 3.5 has been removed from CMake.
|
| Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
| to tell CMake that the project requires at least <min> but has been updated
| to work with policies introduced by <max> or earlier.
|
| Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
|
|
| -- Configuring incomplete, errors occurred!
Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libcyusbserial/libcyusbserial/0002-allow-build-with-cmake-4.patch | 51 | ||||
-rw-r--r-- | meta-oe/recipes-support/libcyusbserial/libcyusbserial_git.bb | 2 |
2 files changed, 52 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libcyusbserial/libcyusbserial/0002-allow-build-with-cmake-4.patch b/meta-oe/recipes-support/libcyusbserial/libcyusbserial/0002-allow-build-with-cmake-4.patch new file mode 100644 index 0000000000..433c845f4c --- /dev/null +++ b/meta-oe/recipes-support/libcyusbserial/libcyusbserial/0002-allow-build-with-cmake-4.patch | |||
@@ -0,0 +1,51 @@ | |||
1 | From 0998662e52a4a31e8e7cfe89d695341082aea238 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alper Ak <alperyasinak1@gmail.com> | ||
3 | Date: Wed, 9 Jul 2025 20:19:39 +0300 | ||
4 | Subject: [PATCH] cmake: Set minimum required version to 3.5 for CMake 4+ | ||
5 | compatibility | ||
6 | |||
7 | Fix: | ||
8 | |||
9 | | CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | ||
10 | | Compatibility with CMake < 3.5 has been removed from CMake. | ||
11 | | | ||
12 | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | ||
13 | | to tell CMake that the project requires at least <min> but has been updated | ||
14 | | to work with policies introduced by <max> or earlier. | ||
15 | | | ||
16 | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | ||
17 | | | ||
18 | | | ||
19 | | -- Configuring incomplete, errors occurred! | ||
20 | |||
21 | Upstream-Status: Submitted [https://github.com/cyrozap/libcyusbserial/pull/8] | ||
22 | |||
23 | Signed-off-by: Alper Ak <alperyasinak1@gmail.com> | ||
24 | --- | ||
25 | CMakeLists.txt | 2 +- | ||
26 | include/CMakeLists.txt | 2 +- | ||
27 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
28 | |||
29 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
30 | index 4d42eb2..4bbb2b0 100644 | ||
31 | --- a/CMakeLists.txt | ||
32 | +++ b/CMakeLists.txt | ||
33 | @@ -1,4 +1,4 @@ | ||
34 | -cmake_minimum_required(VERSION 2.8.4) | ||
35 | +cmake_minimum_required(VERSION 3.5) | ||
36 | |||
37 | project(libcyusbserial C) | ||
38 | |||
39 | diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt | ||
40 | index 8f0c90b..63f4d02 100644 | ||
41 | --- a/include/CMakeLists.txt | ||
42 | +++ b/include/CMakeLists.txt | ||
43 | @@ -1,4 +1,4 @@ | ||
44 | -cmake_minimum_required(VERSION 2.8) | ||
45 | +cmake_minimum_required(VERSION 3.5) | ||
46 | |||
47 | ################################################################################ | ||
48 | # Install libbladeRF header files | ||
49 | -- | ||
50 | 2.43.0 | ||
51 | |||
diff --git a/meta-oe/recipes-support/libcyusbserial/libcyusbserial_git.bb b/meta-oe/recipes-support/libcyusbserial/libcyusbserial_git.bb index 939e7db24e..7c9a9908ad 100644 --- a/meta-oe/recipes-support/libcyusbserial/libcyusbserial_git.bb +++ b/meta-oe/recipes-support/libcyusbserial/libcyusbserial_git.bb | |||
@@ -11,9 +11,9 @@ SRCREV = "655e2d544183d094f0e2d119c7e0c6206a0ddb3f" | |||
11 | SRC_URI = "git://github.com/cyrozap/${BPN}.git;branch=master;protocol=https \ | 11 | SRC_URI = "git://github.com/cyrozap/${BPN}.git;branch=master;protocol=https \ |
12 | file://0001-CMakeLists.txt-don-t-fall-back-CMAKE_INSTALL_LIBDIR-.patch \ | 12 | file://0001-CMakeLists.txt-don-t-fall-back-CMAKE_INSTALL_LIBDIR-.patch \ |
13 | file://0001-Fix-gcc-15-incompatible-pointer-types-error.patch \ | 13 | file://0001-Fix-gcc-15-incompatible-pointer-types-error.patch \ |
14 | file://0002-allow-build-with-cmake-4.patch \ | ||
14 | " | 15 | " |
15 | 16 | ||
16 | |||
17 | inherit cmake | 17 | inherit cmake |
18 | 18 | ||
19 | PACKAGES =+ "${PN}-utils" | 19 | PACKAGES =+ "${PN}-utils" |