blob: 47c8edb49752d96fea550e4e14dffd964936bc82 [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>
Andrew Geisslere34f8962021-04-15 15:53:51 -050011Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Brad Bishop19323692019-04-05 15:28:33 -040012
Patrick Williamsb9af8752023-01-30 13:28:01 -060013Upstream-Status: Inappropriate
Brad Bishop19323692019-04-05 15:28:33 -040014- 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
Andrew Geisslere34f8962021-04-15 15:53:51 -050021index 06b9696f..f30b46b8 100644
Brad Bishop19323692019-04-05 15:28:33 -040022--- a/CMakeLists.txt
23+++ b/CMakeLists.txt
Andrew Geisslere34f8962021-04-15 15:53:51 -050024@@ -117,10 +117,6 @@ if (sqlite3)
Brad Bishop19323692019-04-05 15:28:33 -040025 endif()
26 endif()
27
28-find_package(Iconv REQUIRED)
29-include_directories(${ICONV_INCLUDE_DIR})
30-
31-
Andrew Geisslere34f8962021-04-15 15:53:51 -050032 #set(DOXYDOCS ${PROJECT_SOURCE_DIR}/doc CACHE INTERNAL "Path to doxygen docs")
Brad Bishop19323692019-04-05 15:28:33 -040033 set(DOXYDOCS ${PROJECT_BINARY_DIR}/doc)
34 set(ENV{DOXYGEN_DOCDIR} ${DOXYDOCS})
35--
Andrew Geisslere34f8962021-04-15 15:53:51 -0500362.27.0
Brad Bishop19323692019-04-05 15:28:33 -040037