* [kbd] [PATCH 1/4] src/kbdrate: iconv from iso-8859-2 to utf8
@ 2014-12-04 19:56 ` Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 2/4] libkeymap: include <sys/types.h> for u_short Felix Janda
` (2 subsequent siblings)
3 siblings, 0 replies; 4+ messages in thread
From: Felix Janda @ 2014-12-04 19:56 UTC (permalink / raw)
To: kbd
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=utf-8, Size: 536 bytes --]
---
src/kbdrate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kbdrate.c b/src/kbdrate.c
index 2ab8388..712a1a7 100644
--- a/src/kbdrate.c
+++ b/src/kbdrate.c
@@ -57,7 +57,7 @@ beats rebuilding the kernel!
kbdrate now first tries if the KDKBDREP ioctl is available. If it
is, it is used, else the old method is applied.
- 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
+ 1999-02-22 Arkadiusz MiÅkiewicz <misiek@misiek.eu.org>
- added Native Language Support
1999-03-17
--
2.0.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [kbd] [PATCH 2/4] libkeymap: include <sys/types.h> for u_short
2014-12-04 19:56 ` [kbd] [PATCH 1/4] src/kbdrate: iconv from iso-8859-2 to utf8 Felix Janda
@ 2014-12-04 19:57 ` Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 3/4] kbdrate.c, openvt.c: include <fcntl.h> for open() Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 4/4] openvt.c: include <limits.h> for NAME_MAX Felix Janda
3 siblings, 0 replies; 4+ messages in thread
From: Felix Janda @ 2014-12-04 19:57 UTC (permalink / raw)
To: kbd
---
src/libkeymap/dump.c | 1 +
src/libkeymap/kmap.c | 1 +
src/libkeymap/summary.c | 1 +
3 files changed, 3 insertions(+)
diff --git a/src/libkeymap/dump.c b/src/libkeymap/dump.c
index 0262e24..606931e 100644
--- a/src/libkeymap/dump.c
+++ b/src/libkeymap/dump.c
@@ -13,6 +13,7 @@
#include <string.h>
#include <ctype.h>
#include <unistd.h>
+#include <sys/types.h>
#include "keymap.h"
diff --git a/src/libkeymap/kmap.c b/src/libkeymap/kmap.c
index 67be81e..e13498b 100644
--- a/src/libkeymap/kmap.c
+++ b/src/libkeymap/kmap.c
@@ -1,5 +1,6 @@
#include <stdlib.h>
#include <string.h>
+#include <sys/types.h>
#include "nls.h"
#include "kbd.h"
diff --git a/src/libkeymap/summary.c b/src/libkeymap/summary.c
index 46df90d..0912ae8 100644
--- a/src/libkeymap/summary.c
+++ b/src/libkeymap/summary.c
@@ -9,6 +9,7 @@
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
+#include <sys/types.h>
#include "keymap.h"
--
2.0.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [kbd] [PATCH 3/4] kbdrate.c, openvt.c: include <fcntl.h> for open()
2014-12-04 19:56 ` [kbd] [PATCH 1/4] src/kbdrate: iconv from iso-8859-2 to utf8 Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 2/4] libkeymap: include <sys/types.h> for u_short Felix Janda
@ 2014-12-04 19:57 ` Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 4/4] openvt.c: include <limits.h> for NAME_MAX Felix Janda
3 siblings, 0 replies; 4+ messages in thread
From: Felix Janda @ 2014-12-04 19:57 UTC (permalink / raw)
To: kbd
---
src/kbdrate.c | 1 +
src/openvt.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/kbdrate.c b/src/kbdrate.c
index 712a1a7..ec7ec4b 100644
--- a/src/kbdrate.c
+++ b/src/kbdrate.c
@@ -68,6 +68,7 @@ beats rebuilding the kernel!
*/
+#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
diff --git a/src/openvt.c b/src/openvt.c
index 075136f..24d2709 100644
--- a/src/openvt.c
+++ b/src/openvt.c
@@ -1,3 +1,4 @@
+#include <fcntl.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
--
2.0.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [kbd] [PATCH 4/4] openvt.c: include <limits.h> for NAME_MAX
` (2 preceding siblings ...)
2014-12-04 19:57 ` [kbd] [PATCH 3/4] kbdrate.c, openvt.c: include <fcntl.h> for open() Felix Janda
@ 2014-12-04 19:57 ` Felix Janda
3 siblings, 0 replies; 4+ messages in thread
From: Felix Janda @ 2014-12-04 19:57 UTC (permalink / raw)
To: kbd
---
src/openvt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/openvt.c b/src/openvt.c
index 24d2709..9cb8ea7 100644
--- a/src/openvt.c
+++ b/src/openvt.c
@@ -1,4 +1,5 @@
#include <fcntl.h>
+#include <limits.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
--
2.0.4
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-12-04 19:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-04 19:56 ` [kbd] [PATCH 1/4] src/kbdrate: iconv from iso-8859-2 to utf8 Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 2/4] libkeymap: include <sys/types.h> for u_short Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 3/4] kbdrate.c, openvt.c: include <fcntl.h> for open() Felix Janda
2014-12-04 19:57 ` [kbd] [PATCH 4/4] openvt.c: include <limits.h> for NAME_MAX Felix Janda
Linux console tools development discussion
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/kbd/0 kbd/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 kbd kbd/ http://lore.altlinux.org/kbd \
kbd@lists.altlinux.org kbd@lists.altlinux.ru kbd@lists.altlinux.com
public-inbox-index kbd
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.kbd
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git