diff options
author | Martin Kepplinger <martin.kepplinger@ginzinger.com> | 2017-02-07 12:25:27 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-02-07 14:43:18 +0100 |
commit | 06216078f6bac4b3208bb3ae5de3c76f8f4a86af (patch) | |
tree | f05fea9f1808d6ad2c61161319f64f383b350dd6 /package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch | |
parent | c03f112b63327409c6ebb301d2fa8d873233e0da (diff) | |
download | buildroot-06216078f6bac4b3208bb3ae5de3c76f8f4a86af.tar.gz buildroot-06216078f6bac4b3208bb3ae5de3c76f8f4a86af.zip |
tslib: bump to 1.4
additionally, this:
* removes the patch adding missing headers (fixed upstream)
* slightly changes the package description
Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch')
-rw-r--r-- | package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch b/package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch deleted file mode 100644 index 97cd4beaca..0000000000 --- a/package/tslib/0001-tests-ts_calibrate-add-missing-headers.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 54b66bfe405d8b70c703684e60bedbad5c7d4213 Mon Sep 17 00:00:00 2001 -From: Baruch Siach <baruch@tkos.co.il> -Date: Sat, 14 Jan 2017 21:35:53 +0200 -Subject: [PATCH] tests/ts_calibrate: add missing headers - -The open(2) system call requires sys/types.h and sys/stat.h. Fix the following -build failure under uClibc-ng: - -ts_calibrate.c: In function ‘main’: -ts_calibrate.c:248:19: error: ‘S_IRUSR’ undeclared (first use in this function) - S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - ^ - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> ---- -Upstream status: https://github.com/kergoth/tslib/pull/59 - tests/ts_calibrate.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/tests/ts_calibrate.c b/tests/ts_calibrate.c -index c6652e479d4b..9a98d1f86205 100644 ---- a/tests/ts_calibrate.c -+++ b/tests/ts_calibrate.c -@@ -17,6 +17,8 @@ - #include <string.h> - #include <unistd.h> - #include <sys/time.h> -+#include <sys/types.h> -+#include <sys/stat.h> - - #ifdef __ANDROID__ - #include <fcntl.h> --- -2.11.0 - |