diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-10-10 20:50:05 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-10-10 22:20:48 +0200 |
commit | be42827a4c6929c78f5a6f0b6665056de6810606 (patch) | |
tree | f42e6fe7018671d335c83a6330f1d399865bf619 /net-wireless/qdmr | |
parent | net-p2p/syncthing: remove unused patch (diff) | |
download | gentoo-be42827a4c6929c78f5a6f0b6665056de6810606.tar.gz gentoo-be42827a4c6929c78f5a6f0b6665056de6810606.tar.bz2 gentoo-be42827a4c6929c78f5a6f0b6665056de6810606.zip |
net-wireless/qdmr: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38940
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-wireless/qdmr')
-rw-r--r-- | net-wireless/qdmr/files/qdmr-0.10.2-musl.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/net-wireless/qdmr/files/qdmr-0.10.2-musl.patch b/net-wireless/qdmr/files/qdmr-0.10.2-musl.patch deleted file mode 100644 index 21673cb4ebb2..000000000000 --- a/net-wireless/qdmr/files/qdmr-0.10.2-musl.patch +++ /dev/null @@ -1,34 +0,0 @@ -From eca81fba54b156707545967b78c823cc38b1b53f Mon Sep 17 00:00:00 2001 -From: Hannes Matuschek <hmatuschek@gmail.com> -Date: Wed, 6 Apr 2022 15:29:02 +0200 -Subject: [PATCH] Fixed compilation issue under Genoo. Addresses #216. - ---- - lib/radiolimits.cc | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/lib/radiolimits.cc b/lib/radiolimits.cc -index b883cc8..eb72166 100644 ---- a/lib/radiolimits.cc -+++ b/lib/radiolimits.cc -@@ -3,9 +3,10 @@ - #include "logger.hh" - #include "config.hh" - #include <QMetaProperty> -+#include <ctype.h> - - // Utility function to check string content for ASCII encoding --inline bool isascii(const QString &text) { -+inline bool qstring_is_ascii(const QString &text) { - foreach (QChar c, text) { - if ((c<0x1f) && (0x7f != c)) - return false; -@@ -205,7 +206,7 @@ RadioLimitString::verify(const ConfigItem *item, const QMetaProperty &prop, Radi - << ") is shorter than minimum size " << _minLen << "."; - } - -- if ((ASCII == _encoding) && (! isascii(value))) { -+ if ((ASCII == _encoding) && (! qstring_is_ascii(value))) { - auto &msg = context.newMessage(); - msg << "Cannot encode string '" << value << "' in ASCII."; - } |