summaryrefslogtreecommitdiff
path: root/adk/tools
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-12-26 09:17:39 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2016-12-26 09:17:49 +0100
commit78c205589c45f0e4d2fcbd1acb8c32c0d7bc4222 (patch)
tree5a578d0299f6694572115dead12715a491393c7a /adk/tools
parentf0c281130eefc249d778a521d864180439288ad9 (diff)
add new keyword for PKG_NEEDS: iconv
Diffstat (limited to 'adk/tools')
-rw-r--r--adk/tools/pkgmaker.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/adk/tools/pkgmaker.c b/adk/tools/pkgmaker.c
index 56f516768..384f3198d 100644
--- a/adk/tools/pkgmaker.c
+++ b/adk/tools/pkgmaker.c
@@ -909,6 +909,8 @@ int main() {
fprintf(cfg, "\tselect ADK_TOOLCHAIN_WITH_CXX\n");
fprintf(cfg, "\tselect ADK_PACKAGE_LIBSTDCXX\n");
}
+ if (strncmp(token, "iconv", 5) == 0)
+ fprintf(cfg, "\tdepends on ADK_TARGET_LIBC_ICONV\n");
if (strncmp(token, "threads", 7) == 0)
fprintf(cfg, "\tselect ADK_TARGET_LIB_WITH_THREADS\n");
if (strncmp(token, "mmu", 3) == 0)