summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-03-07 16:03:23 -0500
committerKhem Raj <raj.khem@gmail.com>2019-03-07 13:37:10 -0800
commit05cfc9d1a6503b3bdaf551b054293a0e00736a6c (patch)
tree07df9cbea23947186561c8861ec146a205f66345 /meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch
parent923d7082df3c70a597b05b5543e06cd8c00e3e7e (diff)
downloadmeta-openembedded-05cfc9d1a6503b3bdaf551b054293a0e00736a6c.tar.gz
vim: Remove as this is now in oe-core
Now that we have migrated this recipe to oe-core we need to drop it from here. Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch')
-rw-r--r--meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch b/meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch
deleted file mode 100644
index 37914d4cd9..0000000000
--- a/meta-oe/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch
+++ /dev/null
@@ -1,42 +0,0 @@
1From 38de4bccdb8a861ffdd447f12fdab19d6d852c02 Mon Sep 17 00:00:00 2001
2From: Chong Lu <Chong.Lu@windriver.com>
3Date: Tue, 26 Jun 2018 17:34:15 +0800
4Subject: [PATCH] vim: add knob whether elf.h are checked
5
6Previously, it still was checked when there was no elf library in sysroots directory.
7Add knob to decide whether elf.h are checked or not.
8
9Upstream-Status: Pending
10
11Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
12Signed-off-by: Changqing Li <changqing.li@windriver.com>
13---
14 src/configure.ac | 7 +++++++
15 1 file changed, 7 insertions(+)
16
17diff --git a/src/configure.ac b/src/configure.ac
18index 0ee86ad..64736f0 100644
19--- a/src/configure.ac
20+++ b/src/configure.ac
21@@ -3192,11 +3192,18 @@ AC_TRY_COMPILE([#include <stdio.h>], [int x __attribute__((unused));],
22 AC_MSG_RESULT(no))
23
24 dnl Checks for header files.
25+AC_MSG_CHECKING(whether or not to look for elf.h)
26+AC_ARG_ENABLE(elf-check,
27+ [ --enable-elf-check If elfutils, check for elf.h [default=no]],
28+ , enable_elf_check="no")
29+AC_MSG_RESULT($enable_elf_check)
30+if test "x$enable_elf_check" != "xno"; then
31 AC_CHECK_HEADER(elf.h, HAS_ELF=1)
32 dnl AC_CHECK_HEADER(dwarf.h, SVR4=1)
33 if test "$HAS_ELF" = 1; then
34 AC_CHECK_LIB(elf, main)
35 fi
36+fi
37
38 AC_HEADER_DIRENT
39
40--
412.7.4
42