blob: c86dc1691e3b19ba3b77d585b38a5d7e86367d74 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 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>
11
12Upstream-status: Inappropriate
13- upstream doxygen must build on many architectures, this change is
14 too intrusive for upstream
15---
16 CMakeLists.txt | 4 ----
17 1 file changed, 4 deletions(-)
18
19diff --git a/CMakeLists.txt b/CMakeLists.txt
20index 45c2f2c1..22cf0144 100644
21--- a/CMakeLists.txt
22+++ b/CMakeLists.txt
23@@ -92,10 +92,6 @@ if (sqlite3)
24 endif()
25 endif()
26
27-find_package(Iconv REQUIRED)
28-include_directories(${ICONV_INCLUDE_DIR})
29-
30-
31 #set(DOXYDOCS ${CMAKE_SOURCE_DIR}/doc CACHE INTERNAL "Path to doxygen docs")
32 set(DOXYDOCS ${PROJECT_BINARY_DIR}/doc)
33 set(ENV{DOXYGEN_DOCDIR} ${DOXYDOCS})
34--
352.17.1
36