diff mbox

[uclibc-ng-devel] uClibc-ng - small C library for embedded systems branch master updated. v1.0.21-6-gf81442f

Message ID 20161231051250.02DD210107@helium.openadk.org
State Not Applicable
Headers show

Commit Message

wbx Dec. 31, 2016, 5:12 a.m. UTC
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".

The branch, master has been updated
       via  f81442f06289f183e3891bf6d48ad138faf66c96 (commit)
      from  892932d9e23aa417f0f067cbd628868eb5bc8e48 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f81442f06289f183e3891bf6d48ad138faf66c96
Author: Waldemar Brodkorb <wbx@openadk.org>
Date:   Sat Dec 31 06:13:53 2016 +0100

    argp/iconv needs wchar enabled

-----------------------------------------------------------------------

Summary of changes:
 extra/Configs/Config.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



hooks/post-receive
diff mbox

Patch

diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index b02054c..f312e7a 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -1429,6 +1429,7 @@  config UCLIBC_HAS_WCHAR
 
 config UCLIBC_HAS_LIBICONV
 	bool "Iconv Support"
+	select UCLIBC_HAS_WCHAR
 	help
 	  Add tiny iconv support for charset conversion from and to UTF-8.
 
@@ -1821,9 +1822,10 @@  config UCLIBC_HAS_GNU_GETSUBOPT
 	  Most people will answer Y.
 
 config UCLIBC_HAS_ARGP
-	bool "Support argp (as standalone shared object)"
+	bool "Support argp"
 	select UCLIBC_HAS_GETOPT_LONG
 	select UCLIBC_HAS_GNU_GETOPT
+	select UCLIBC_HAS_WCHAR
 	default n
 	help
 	  Argp is an interface for parsing unix-style argument vectors. Unlike