evtest: update to 1.34.
This commit is contained in:
parent
6f98935351
commit
37fd19b5fa
@ -0,0 +1,37 @@
|
||||
From 5eb4ab1c139ea38ebe6bb4acba08b09ee7d77d3c Mon Sep 17 00:00:00 2001
|
||||
From: Baruch Siach <baruch@tkos.co.il>
|
||||
Date: Sun, 18 Aug 2019 10:01:06 +0300
|
||||
Subject: [PATCH] Add missing limits.h include
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Fixes build with musl libc that does not include limits.h indirectly via
|
||||
other headers.
|
||||
|
||||
evtest.c: In function ‘scan_devices’:
|
||||
evtest.c:886:14: error: ‘PATH_MAX’ undeclared (first use in this function); did you mean INT8_MAX’?
|
||||
char fname[PATH_MAX];
|
||||
^~~~~~~~
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
||||
---
|
||||
evtest.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git evtest.c evtest.c
|
||||
index 37d4f85..548c203 100644
|
||||
--- evtest.c
|
||||
+++ evtest.c
|
||||
@@ -56,6 +56,7 @@
|
||||
#include <getopt.h>
|
||||
#include <ctype.h>
|
||||
#include <signal.h>
|
||||
+#include <limits.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
--
|
||||
2.23.0
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Template file for 'evtest'
|
||||
pkgname=evtest
|
||||
version=1.33
|
||||
revision=2
|
||||
version=1.34
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="automake"
|
||||
short_desc="Command line tool for displaying device input information"
|
||||
@ -9,7 +9,7 @@ maintainer="sen <ethan.k.shackelford@gmail.com>"
|
||||
license="GPL-2.0-or-later"
|
||||
homepage="https://cgit.freedesktop.org/evtest/"
|
||||
distfiles="https://cgit.freedesktop.org/evtest/snapshot/evtest-${version}.tar.xz"
|
||||
checksum=928f6e81c73bd71ce88be03f7fdad204087a04dccd0250462106af0c2d813532
|
||||
checksum=e49f1f160b30c8f7c2a4caef5ab655f1caf816483d19fdedd6db2d251d7ab80e
|
||||
|
||||
pre_configure() {
|
||||
autoreconf -fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user