Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
From e80a13776e6d6df29fd704cd63e0744200c3df1b Mon Sep 17 00:00:00 2001
|
||||
From: Peter Seiderer <ps.report@gmx.net>
|
||||
Date: Sun, 1 Oct 2017 19:54:53 +0200
|
||||
Subject: [PATCH] Include limits.h for PATH_MAX.
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Fixes the following compile failure when building with musl:
|
||||
|
||||
find_event_devices.c: In function ‘find_event_devices’:
|
||||
find_event_devices.c:60:14: error: ‘PATH_MAX’ undeclared (first use in this function)
|
||||
char fname[PATH_MAX];
|
||||
^~~~~~~~
|
||||
|
||||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||
---
|
||||
tools/find_event_devices.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/tools/find_event_devices.c b/tools/find_event_devices.c
|
||||
index 2a43d54..3a74096 100644
|
||||
--- a/tools/find_event_devices.c
|
||||
+++ b/tools/find_event_devices.c
|
||||
@@ -24,6 +24,7 @@
|
||||
|
||||
#define _GNU_SOURCE
|
||||
#include <linux/input.h>
|
||||
+#include <limits.h>
|
||||
#include <dirent.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
--
|
||||
2.14.2
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# Hash from https://lists.freedesktop.org/archives/input-tools/2016-September/001330.html
|
||||
sha256 541cc138f0215b7d0cd4ad5e6bb1402518ffc5e31294c36bb67b4ff1791bb27f evemu-2.5.0.tar.xz
|
||||
# From https://lists.freedesktop.org/archives/input-tools/2017-September/001416.html
|
||||
sha256 78c9400d55eeeb5ab75161360543f9376438c4da4934cb34cdda5b46021ae379 evemu-2.7.0.tar.xz
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EVEMU_VERSION = 2.5.0
|
||||
EVEMU_VERSION = 2.7.0
|
||||
EVEMU_SITE = http://www.freedesktop.org/software/evemu
|
||||
EVEMU_SOURCE = evemu-$(EVEMU_VERSION).tar.xz
|
||||
EVEMU_LICENSE = LGPLv3 (library), GPLv3 (tools)
|
||||
EVEMU_LICENSE = LGPL-3.0 (library), GPL-3.0 (tools)
|
||||
EVEMU_LICENSE_FILES = COPYING
|
||||
|
||||
# asciidoc used to generate manpages, which we don't need, and if it's
|
||||
|
||||
Reference in New Issue
Block a user