summaryrefslogtreecommitdiff
path: root/config/companion_libs.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-12-16 23:54:11 (GMT)
committerAlexey Neyman <stilor@att.net>2017-01-10 18:38:08 (GMT)
commit8e7ac5fcd94d68cdd7cc7ad4638bdc0e48e9baf5 (patch)
treeb2df2a714f14fbe314b574ca814f0d35d3107c66 /config/companion_libs.in
parentca0700010e9be397414b1eba8d82e66c976e03f6 (diff)
Change when libiconv/gettext are built.
Make them configurable, default to y when build!=host (i.e. canadian or cross-native) because we don't know what libraries the host will provide. GLIBC, as previously, selects them explicitly. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/companion_libs.in')
-rw-r--r--config/companion_libs.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/companion_libs.in b/config/companion_libs.in
index 67094cb..e7e3ebb 100644
--- a/config/companion_libs.in
+++ b/config/companion_libs.in
@@ -62,11 +62,13 @@ config COMPLIBS
bool
config LIBICONV
- bool
+ bool "Build local libiconv"
+ default y if CANADIAN || CROSS_NATIVE
select COMPLIBS
config GETTEXT
- bool
+ bool "Build local gettext"
+ default y if CANADIAN || CROSS_NATIVE
select COMPLIBS
config GMP