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 040632792e9f19ccf49149e4ae3ddac351a98b5a (commit) from 45850d5239bcff4f1352ab7cf4c364cfd46acbcf (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 040632792e9f19ccf49149e4ae3ddac351a98b5a Author: Waldemar Brodkorb wbx@uclibc-ng.org Date: Sun Jun 19 17:51:32 2016 +0200
argp: select getopt / getopt_long
Select required features. Fix intendation. Reported-by: Leonid Lisovskiy lly.dev@gmail.com
-----------------------------------------------------------------------
Summary of changes: extra/Configs/Config.in | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index a21bdac..4a1509d 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -1877,20 +1877,22 @@ config UCLIBC_HAS_GNU_GETSUBOPT Most people will answer Y.
config UCLIBC_HAS_ARGP - bool "Support argp (as standalone shared object)" - default n - help - Argp is an interface for parsing unix-style argument vectors. Unlike - the common getopt interface, it provides many advanced features in - addition to parsing options, such as automatic output in response to - `--help' and `--version' options. - A library can export an argp option parser, which programs can easily - use in conjunction with their own option parser. - A new shared object "libuargp" is created. The "libc.so" linker script - contains the AS_NEEDED entry for getting the libuargp linked automatically. - Argp support is needed by elfutils libdw. - - Most people can safely answer N. + bool "Support argp (as standalone shared object)" + select UCLIBC_HAS_GETOPT_LONG + select UCLIBC_HAS_GNU_GETOPT + default n + help + Argp is an interface for parsing unix-style argument vectors. Unlike + the common getopt interface, it provides many advanced features in + addition to parsing options, such as automatic output in response to + `--help' and `--version' options. + A library can export an argp option parser, which programs can easily + use in conjunction with their own option parser. + A new shared object "libuargp" is created. The "libc.so" linker script + contains the AS_NEEDED entry for getting the libuargp linked automatically. + Argp support is needed by elfutils libdw. + + Most people can safely answer N.
endmenu
hooks/post-receive