1From 24650b0c7db6b213a2eaa5061b75b9f1b43f1ce9 Mon Sep 17 00:00:00 2001
2From: Bartosz Golaszewski <brgl@bgdev.pl>
3Date: Fri, 23 Nov 2018 11:44:56 +0100
4Subject: [PATCH] build: don't look for Iconv
5
6Drop the find_package() for Iconv. CMake is unable to find iconv.h in
7native build but all modern systems supply it as part of the standard
8C library. We don't need this check in meta-openembedded.
9
10Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
11Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
12
13Upstream-status: Inappropriate
14- upstream doxygen must build on many architectures, this change is
15  too intrusive for upstream
16---
17 CMakeLists.txt | 4 ----
18 1 file changed, 4 deletions(-)
19
20diff --git a/CMakeLists.txt b/CMakeLists.txt
21index 06b9696f..f30b46b8 100644
22--- a/CMakeLists.txt
23+++ b/CMakeLists.txt
24@@ -117,10 +117,6 @@ if (sqlite3)
25   endif()
26 endif()
27
28-find_package(Iconv REQUIRED)
29-include_directories(${ICONV_INCLUDE_DIR})
30-
31-
32 #set(DOXYDOCS ${PROJECT_SOURCE_DIR}/doc CACHE INTERNAL "Path to doxygen docs")
33 set(DOXYDOCS ${PROJECT_BINARY_DIR}/doc)
34 set(ENV{DOXYGEN_DOCDIR} ${DOXYDOCS})
35--
362.27.0
37
38