forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/kio: Fix build with GCC-11
Upstream commit 9965ec1b9e6f6db192a2355e4e3eb80bc27fc092 Thanks-to: Geoff Leach <[email protected]> Closes: https://bugs.gentoo.org/766480 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
3 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From 9965ec1b9e6f6db192a2355e4e3eb80bc27fc092 Mon Sep 17 00:00:00 2001 | ||
From: Ahmad Samir <[email protected]> | ||
Date: Sun, 24 Jan 2021 11:10:27 +0200 | ||
Subject: [PATCH] Fix build with gcc11 | ||
|
||
Apparently now we need to #include <limit>. | ||
|
||
Patch by Geoff Leach: | ||
https://bugs.gentoo.org/766480 | ||
https://invent.kde.org/frameworks/kio/-/issues/3 | ||
|
||
NO_CHANGELOG | ||
--- | ||
src/kntlm/des.cpp | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/src/kntlm/des.cpp b/src/kntlm/des.cpp | ||
index 18d85bfd..65c86f06 100644 | ||
--- a/src/kntlm/des.cpp | ||
+++ b/src/kntlm/des.cpp | ||
@@ -29,6 +29,8 @@ | ||
#include <string.h> | ||
#include <qendian.h> | ||
|
||
+#include <limits> | ||
+ | ||
static void permute_ip(unsigned char *inblock, DES_KEY *key, unsigned char *outblock); | ||
static void permute_fp(unsigned char *inblock, DES_KEY *key, unsigned char *outblock); | ||
static void perminit_ip(DES_KEY *key); | ||
-- | ||
GitLab | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters