diff options
| author | Alexey Neyman <stilor@att.net> | 2016-12-16 15:54:11 -0800 |
|---|---|---|
| committer | Alexey Neyman <stilor@att.net> | 2017-01-10 10:38:08 -0800 |
| commit | 8e7ac5fcd94d68cdd7cc7ad4638bdc0e48e9baf5 (patch) | |
| tree | b2df2a714f14fbe314b574ca814f0d35d3107c66 /config | |
| parent | ca0700010e9be397414b1eba8d82e66c976e03f6 (diff) | |
| download | crosstool-ng-8e7ac5fcd94d68cdd7cc7ad4638bdc0e48e9baf5.tar.gz crosstool-ng-8e7ac5fcd94d68cdd7cc7ad4638bdc0e48e9baf5.tar.bz2 crosstool-ng-8e7ac5fcd94d68cdd7cc7ad4638bdc0e48e9baf5.zip | |
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')
| -rw-r--r-- | config/companion_libs.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/companion_libs.in b/config/companion_libs.in index 67094cb9..e7e3ebb3 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 |
