aboutsummaryrefslogtreecommitdiff
path: root/core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2019-03-15 16:52:21 -0600
committerDaniel Díaz <daniel.diaz@linaro.org>2019-03-15 16:52:21 -0600
commitcc08a5c674e670fd79c7cd7092ee7857af7486f8 (patch)
tree382b3dc0eb3adc1ba273223131cc05ace276d7a7 /core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch
parent1a58eaaf5c35855ba6540a92a757ec9522be0412 (diff)
ltp: Remove backport
With meta-lkft now in place, this recipe can move over there. Change-Id: I7463fd4a069199cd6b803e5ae06291a5637192f4 Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
Diffstat (limited to 'core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch')
-rw-r--r--core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch b/core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch
deleted file mode 100644
index c4fd8d0..0000000
--- a/core/recipes-extended/ltp/ltp/0001-statx-fix-compile-errors.patch
+++ /dev/null
@@ -1,34 +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.1