This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/hwcap/master in repository glibc.
discards 9652ee7 x86: Set dl_hwcap from CPU features discards c5a40b6 Check if SSE is available with HAS_CPU_FEATURE adds e4e7948 resolv: Remove IQUERY support adds bf079e1 getopt: remove USE_NONOPTION_FLAGS adds 7784135 getopt: merge from gnulib: don't use `...' quotes adds 7f71f9c getopt: merge straightforward changes from gnulib adds 7e161be getopt: fix fencepost error in ambiguous-W-option handling adds 544ce84 getopt: clean up error reporting adds 7a7be6c getopt: merge from gnulib: function prototype adjustments adds c1af877 getopt: tidy up _getopt_initialize a bit adds dfbea09 getopt: refactor long-option handling adds aeacb9f getopt: merge from gnulib: alloca avoidance adds 0f3be87 getopt: merge _GL_UNUSED annotations from gnulib adds 10a33cf getopt: eliminate __need_getopt by splitting up getopt.h. adds 06576cb getopt: annotate files with relationship to gnulib. adds 893ba3e getopt: merge from gnulib: use angle-bracket includes consistently adds bf77301 Check if SSE is available with HAS_CPU_FEATURE new 32ffd2e x86: Set dl_hwcap from CPU features
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (9652ee7) \ N -- N -- N refs/heads/hjl/hwcap/master (32ffd2e)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 148 +++++ NEWS | 3 + config.h.in | 6 - csu/init-first.c | 8 - include/bits/getopt_core.h | 1 + include/bits/getopt_ext.h | 1 + include/bits/getopt_posix.h | 1 + include/getopt.h | 11 - include/libc-symbols.h | 43 ++ include/stdio.h | 2 + libio/stdio.h | 10 +- manual/getopt.texi | 3 - posix/Makefile | 10 +- posix/bits/getopt_core.h | 96 +++ posix/bits/getopt_ext.h | 77 +++ posix/bits/getopt_posix.h | 51 ++ posix/bug-getopt4.c | 16 +- posix/getopt.c | 1154 +++++++++++------------------------ posix/getopt.h | 179 +----- posix/getopt1.c | 67 +- posix/getopt_init.c | 74 --- posix/getopt_int.h | 93 ++- posix/tst-getopt-cancel.c | 284 +++++++++ posix/tst-getopt_long1.c | 2 +- posix/unistd.h | 3 +- resolv/res_mkquery.c | 18 - stdio-common/fxprintf.c | 78 ++- sysdeps/mach/hurd/i386/init-first.c | 8 - 28 files changed, 1206 insertions(+), 1241 deletions(-) create mode 100644 include/bits/getopt_core.h create mode 100644 include/bits/getopt_ext.h create mode 100644 include/bits/getopt_posix.h create mode 100644 posix/bits/getopt_core.h create mode 100644 posix/bits/getopt_ext.h create mode 100644 posix/bits/getopt_posix.h delete mode 100644 posix/getopt_init.c create mode 100644 posix/tst-getopt-cancel.c