summaryrefslogtreecommitdiff
path: root/dev-cpp/jwt-cpp/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /dev-cpp/jwt-cpp/files
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'dev-cpp/jwt-cpp/files')
-rw-r--r--dev-cpp/jwt-cpp/files/jwt-cpp-0.6.0-gcc13.patch14
-rw-r--r--dev-cpp/jwt-cpp/files/jwt-cpp-0.7.1-cmake-minversion.patch42
2 files changed, 56 insertions, 0 deletions
diff --git a/dev-cpp/jwt-cpp/files/jwt-cpp-0.6.0-gcc13.patch b/dev-cpp/jwt-cpp/files/jwt-cpp-0.6.0-gcc13.patch
new file mode 100644
index 000000000000..3fef24536a86
--- /dev/null
+++ b/dev-cpp/jwt-cpp/files/jwt-cpp-0.6.0-gcc13.patch
@@ -0,0 +1,14 @@
+From: Hannu Lounento <hannu.lounento@vaisala.com>
+Bug: https://github.com/Thalhammer/jwt-cpp/pull/287
+
+Fix build with GCC 13.
+
+--- a/include/jwt-cpp/base.h
++++ b/include/jwt-cpp/base.h
+@@ -3,6 +3,7 @@
+
+ #include <array>
++#include <cstdint>
+ #include <stdexcept>
+ #include <string>
+
diff --git a/dev-cpp/jwt-cpp/files/jwt-cpp-0.7.1-cmake-minversion.patch b/dev-cpp/jwt-cpp/files/jwt-cpp-0.7.1-cmake-minversion.patch
new file mode 100644
index 000000000000..32f88080dd29
--- /dev/null
+++ b/dev-cpp/jwt-cpp/files/jwt-cpp-0.7.1-cmake-minversion.patch
@@ -0,0 +1,42 @@
+From 3972ac2d1773087fa9cebafebbb94e8e781481ea Mon Sep 17 00:00:00 2001
+From: Oliver Freyermuth <o.freyermuth@googlemail.com>
+Date: Sat, 25 Oct 2025 02:43:17 +0200
+Subject: [PATCH] CMake: synchronize cmake_minimum_required from main
+ CMakeLists.txt (#398)
+
+The examples have been using older cmake_minimum_required,
+given support for versions <3.10 is deprecated since 3.31,
+synchronize the minimum required version from the main CMakeLists.txt
+(version 3.14) into examples and tests.
+
+closes #397
+---
+ example/CMakeLists.txt | 2 +-
+ example/traits/CMakeLists.txt | 2 +-
+ tests/cmake/CMakeLists.txt | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+--- a/example/CMakeLists.txt
++++ b/example/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 3.8)
++cmake_minimum_required(VERSION 3.14)
+ project(jwt-cpp-examples)
+
+ if(NOT TARGET jwt-cpp)
+--- a/example/traits/CMakeLists.txt
++++ b/example/traits/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 3.8)
++cmake_minimum_required(VERSION 3.14)
+ project(jwt-cpp-traits)
+
+ if(NOT TARGET jwt-cpp)
+--- a/tests/cmake/CMakeLists.txt
++++ b/tests/cmake/CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 3.8)
++cmake_minimum_required(VERSION 3.14)
+ project(jwt-cpp-installation-tests)
+
+ set(TEST CACHE STRING "The test source file to be used")