diff options
author | Petr Vorel <petr.vorel@gmail.com> | 2019-01-15 20:18:14 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2019-01-15 21:17:13 +0100 |
commit | 746890aaa83f674303e26b3e1d91925227bb7c3a (patch) | |
tree | 4495bc1d555421e82c76949149efdbc1c7cc09d5 /package/ltp-testsuite/0002-statx-fix-compile-errors.patch | |
parent | a6beef16b63094ebf8fab56c80f83e9b3535df04 (diff) | |
download | buildroot-746890aaa83f674303e26b3e1d91925227bb7c3a.tar.gz buildroot-746890aaa83f674303e26b3e1d91925227bb7c3a.zip |
ltp: Bump version 20190115
Drop statx patch as it's included in this release.
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ltp-testsuite/0002-statx-fix-compile-errors.patch')
-rw-r--r-- | package/ltp-testsuite/0002-statx-fix-compile-errors.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/ltp-testsuite/0002-statx-fix-compile-errors.patch b/package/ltp-testsuite/0002-statx-fix-compile-errors.patch deleted file mode 100644 index 6ddd2c9054..0000000000 --- a/package/ltp-testsuite/0002-statx-fix-compile-errors.patch +++ /dev/null @@ -1,35 +0,0 @@ -From a945304b6a2286d0665c70250cc5475eb07fd21e Mon Sep 17 00:00:00 2001 -From: Thadeu Lima de Souza Cascardo <cascardo@canonical.com> -Date: Wed, 26 Sep 2018 11:15:45 -0300 -Subject: [PATCH] statx: fix compile errors - -struct statx is only defined in sys/stat.h when _GNU_SOURCE is defined. -The testcases do define _GNU_SOURCE, but not the m4 struct check. - -Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com> -Acked-by: Cyril Hrubis <chrubis@suse.cz> ---- - m4/ltp-statx.m4 | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -diff --git a/m4/ltp-statx.m4 b/m4/ltp-statx.m4 -index 44303d30c..5f79a94cd 100644 ---- a/m4/ltp-statx.m4 -+++ b/m4/ltp-statx.m4 -@@ -23,6 +23,11 @@ dnl - AC_DEFUN([LTP_CHECK_STATX],[ - AC_CHECK_FUNCS(statx,,,[[#include <sys/stat.h>]]) - AC_CHECK_HEADER(linux/fs.h,,,) --AC_CHECK_TYPES([struct statx],,,[[#include <sys/stat.h>]]) --AC_CHECK_TYPES([struct statx_timestamp],,,[[#include <sys/stat.h>]]) -+AC_CHECK_TYPES([struct statx],,,[[ -+ #define _GNU_SOURCE -+ #include <sys/stat.h> -+]]) -+AC_CHECK_TYPES([struct statx_timestamp],,,[[ -+ #define _GNU_SOURCE -+ #include <sys/stat.h>]]) - ]) --- -2.19.0 - |