diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-05-23 18:03:24 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-05-25 00:12:24 +0200 |
commit | e56d63beb10e944fc1a3f7879c96da91845d3ddc (patch) | |
tree | 43a1d69993f49ec868b406ac1ba7c2f4b7417f0f /app-misc/logiops | |
parent | net-im/spectrum2: drop 2.1.3-r2 (diff) | |
download | gentoo-e56d63beb10e944fc1a3f7879c96da91845d3ddc.tar.gz gentoo-e56d63beb10e944fc1a3f7879c96da91845d3ddc.tar.bz2 gentoo-e56d63beb10e944fc1a3f7879c96da91845d3ddc.zip |
app-misc/logiops: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/31145
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-misc/logiops')
-rw-r--r-- | app-misc/logiops/files/logiops-0.2.3-musl-fixes.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app-misc/logiops/files/logiops-0.2.3-musl-fixes.patch b/app-misc/logiops/files/logiops-0.2.3-musl-fixes.patch deleted file mode 100644 index de549591852e..000000000000 --- a/app-misc/logiops/files/logiops-0.2.3-musl-fixes.patch +++ /dev/null @@ -1,44 +0,0 @@ -# timeval needs sys/time.h and uint in not a part of non glibc systems, and -# uint in not available on musl. -# -# A pull request has been opened upstream. So, once that is merged we can -# remove this patch. Please refer: https://github.com/PixlOne/logiops/pull/330 -# -# Closes: https://bugs.gentoo.org/828859 ---- a/src/logid/actions/KeypressAction.cpp -+++ b/src/logid/actions/KeypressAction.cpp -@@ -85,7 +85,7 @@ KeypressAction::Config::Config(Device* device, libconfig::Setting& config) : - } - } - --std::vector<uint>& KeypressAction::Config::keys() -+std::vector<unsigned int>& KeypressAction::Config::keys() - { - return _keys; --} -\ No newline at end of file -+} ---- a/src/logid/actions/KeypressAction.h -+++ b/src/logid/actions/KeypressAction.h -@@ -38,9 +38,9 @@ namespace actions { - { - public: - explicit Config(Device* device, libconfig::Setting& root); -- std::vector<uint>& keys(); -+ std::vector<unsigned int>& keys(); - protected: -- std::vector<uint> _keys; -+ std::vector<unsigned int> _keys; - }; - protected: - Config _config; ---- a/src/logid/backend/raw/RawDevice.cpp -+++ b/src/logid/backend/raw/RawDevice.cpp -@@ -40,6 +40,7 @@ extern "C" - #include <fcntl.h> - #include <sys/ioctl.h> - #include <linux/hidraw.h> -+#include <sys/time.h> - } - - using namespace logid::backend::raw; |