summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-01-09 19:32:56 +0100
committerLars Wendler <polynomial-c@gentoo.org>2017-01-09 19:33:17 +0100
commit3dbd6d8a84a1d7d7dc2809735e660f247bcc09fd (patch)
treeee3e59d18ece3940209f8ae81c51278c75df0fd8 /sys-apps/kbd/files
parentsys-apps/kbd: Bump to version 2.0.4 (diff)
downloadgentoo-3dbd6d8a84a1d7d7dc2809735e660f247bcc09fd.tar.gz
gentoo-3dbd6d8a84a1d7d7dc2809735e660f247bcc09fd.tar.bz2
gentoo-3dbd6d8a84a1d7d7dc2809735e660f247bcc09fd.zip
sys-apps/kbd: Removed old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sys-apps/kbd/files')
-rw-r--r--sys-apps/kbd/files/kbd-2.0.1-big_endian.patch27
-rw-r--r--sys-apps/kbd/files/kbd-2.0.1-stdarg.patch43
2 files changed, 0 insertions, 70 deletions
diff --git a/sys-apps/kbd/files/kbd-2.0.1-big_endian.patch b/sys-apps/kbd/files/kbd-2.0.1-big_endian.patch
deleted file mode 100644
index f69b7f9c811a..000000000000
--- a/sys-apps/kbd/files/kbd-2.0.1-big_endian.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 363185b72ccb5279fa950a378ebd93c082078d39 Mon Sep 17 00:00:00 2001
-From: Aaro Koskinen <aaro.koskinen@iki.fi>
-Date: Sat, 15 Mar 2014 01:32:56 +0200
-Subject: libkeymap: fix kmap on big-endian machines
-
-Currently "loadkeys" does not work properly (no keys are ever changed)
-on big-endian machines (e.g. SPARC and other classic hardware)
-due to incorrect typing. The patch fixes this.
-
-Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
-
-diff --git a/src/libkeymap/kmap.c b/src/libkeymap/kmap.c
-index e529136..85a3bb3 100644
---- a/src/libkeymap/kmap.c
-+++ b/src/libkeymap/kmap.c
-@@ -37,7 +37,7 @@ int
- lk_key_exists(struct lk_ctx *ctx, unsigned int k_table, unsigned int k_index)
- {
- struct lk_array *map;
-- u_short *key;
-+ unsigned int *key;
-
- map = lk_array_get_ptr(ctx->keymap, k_table);
- if (!map) {
---
-cgit v0.10.1
-
diff --git a/sys-apps/kbd/files/kbd-2.0.1-stdarg.patch b/sys-apps/kbd/files/kbd-2.0.1-stdarg.patch
deleted file mode 100644
index b325af4b1d6a..000000000000
--- a/sys-apps/kbd/files/kbd-2.0.1-stdarg.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 7955ccd650dc3235df3bf6333222c2811dd43141 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Mon, 6 Jan 2014 10:27:23 -0500
-Subject: [PATCH] libkeymap: include stdarg.h where used
-
-Some of these headers use va_list but don't include stdarg.h for it.
-
-Reported-by: Anthony Basile <blueness@gentoo.org>
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- src/libkeymap/contextP.h | 2 ++
- src/libkeymap/keymap/common.h | 2 ++
- 2 files changed, 4 insertions(+)
-
-diff --git a/src/libkeymap/contextP.h b/src/libkeymap/contextP.h
-index e3798e3..8ee3fab 100644
---- a/src/libkeymap/contextP.h
-+++ b/src/libkeymap/contextP.h
-@@ -1,6 +1,8 @@
- #ifndef LK_CONTEXTP_H
- #define LK_CONTEXTP_H
-
-+#include <stdarg.h>
-+
- #include "keymap.h"
-
- /**
-diff --git a/src/libkeymap/keymap/common.h b/src/libkeymap/keymap/common.h
-index 6b9cead..987b564 100644
---- a/src/libkeymap/keymap/common.h
-+++ b/src/libkeymap/keymap/common.h
-@@ -6,6 +6,8 @@
- #ifndef LK_COMMON_H
- #define LK_COMMON_H
-
-+#include <stdarg.h>
-+
- #include <keymap/context.h>
-
- /** Initializes the structures necessary to read and/or parse keymap.
---
-1.8.4.3
-