summaryrefslogtreecommitdiffstats
path: root/rules/host-glib.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-06-09 23:11:42 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2009-06-09 23:11:42 +0000
commite7e42350a5f83f426ca3986a9ec90fb2ce796ea8 (patch)
tree41b65e9a29ebea8af2485ee25588b9c2539b6da8 /rules/host-glib.in
parent7595a886825031bc18750e9f3bcda9138164c361 (diff)
downloadptxdist-e7e42350a5f83f426ca3986a9ec90fb2ce796ea8.tar.gz
ptxdist-e7e42350a5f83f426ca3986a9ec90fb2ce796ea8.tar.xz
iconv: rework iconv handling in ptxdist
libiconv provides functionality that is already provided by glibc. So we consolidate ptxdist to use native glibc iconv instead of libiconv support. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10681 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/host-glib.in')
-rw-r--r--rules/host-glib.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/rules/host-glib.in b/rules/host-glib.in
index 5a5fb70e4..4bf062a3b 100644
--- a/rules/host-glib.in
+++ b/rules/host-glib.in
@@ -2,10 +2,10 @@
config HOST_GLIB
tristate
-# Note: glib detects a useable iconv() implementation by its own
-# On a standard GNU glibc based system there is no need to
-# build and link against libiconv. Reactivate this dependency
-# if it fails on a system. But also change this documentation
-# in this case!
-# select HOST_LIBICONV
+ # Note: as there may be systems with and without libiconv and
+ # glibc-iconv out there, we always use libiconv in our host
+ # tools. Otherwhise it is not possible to overcome the
+ # header check in glib.
+ # FIXME what to do if we build a target system without iconv?
+ select HOST_LIBICONV