summaryrefslogtreecommitdiff
path: root/dev-python/pybind11/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-09 17:46:56 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-07-09 17:46:56 +0000
commit7a3eefaa2a75ebc81fd96083ae5ba4e57893fd95 (patch)
tree7c49bd50bc05f0f04f0c0084723577a56c11371c /dev-python/pybind11/files
parentcfc2626644c97a3525658bf1b560378f1ba03466 (diff)
downloadbaldeagleos-repo-7a3eefaa2a75ebc81fd96083ae5ba4e57893fd95.tar.gz
baldeagleos-repo-7a3eefaa2a75ebc81fd96083ae5ba4e57893fd95.tar.xz
baldeagleos-repo-7a3eefaa2a75ebc81fd96083ae5ba4e57893fd95.zip
Adding metadata
Diffstat (limited to 'dev-python/pybind11/files')
-rw-r--r--dev-python/pybind11/files/pybind11-2.13.1-gcc14-fix.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/pybind11/files/pybind11-2.13.1-gcc14-fix.patch b/dev-python/pybind11/files/pybind11-2.13.1-gcc14-fix.patch
new file mode 100644
index 000000000000..878ede4a14f6
--- /dev/null
+++ b/dev-python/pybind11/files/pybind11-2.13.1-gcc14-fix.patch
@@ -0,0 +1,23 @@
+Patch source: https://github.com/pybind/pybind11/commit/51c2aa16de5b50fe4be6a0016d6090d4a831899e
+From 51c2aa16de5b50fe4be6a0016d6090d4a831899e Mon Sep 17 00:00:00 2001
+From: wenqing <wenqing.wang@ufz.de>
+Date: Fri, 28 Jun 2024 16:12:32 +0200
+Subject: [PATCH] Fixed a compilation error with gcc 14 (#5208)
+
+---
+ include/pybind11/typing.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/include/pybind11/typing.h b/include/pybind11/typing.h
+index c8ba18d499..b0feb9464a 100644
+--- a/include/pybind11/typing.h
++++ b/include/pybind11/typing.h
+@@ -14,6 +14,8 @@
+ #include "cast.h"
+ #include "pytypes.h"
+
++#include <algorithm>
++
+ PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
+ PYBIND11_NAMESPACE_BEGIN(typing)
+