This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26-382-g2394784


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 "GNU C Library master sources".

The branch, master has been updated
       via  23947846658fd41875381c0bcc05b319c3c7bde4 (commit)
      from  9ac3c68218b5bcbc40ae9e27b0b13f5e1c81f84c (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 -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=23947846658fd41875381c0bcc05b319c3c7bde4

commit 23947846658fd41875381c0bcc05b319c3c7bde4
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Sep 22 17:43:42 2017 +0000

    Remove Banner mechanism.
    
    This patch removes the Banner mechanism, with the last remaining
    Banner file replaced by a contrib.texi entry.  This accords with the
    principle that the output of running libc.so.6 is not the place to
    credit particular contributions (the manual is), and with all other
    configuration options not mentioned there, it doesn't seem appropriate
    to focus there on the one question of whether the one remaining piece
    configured as an add-on was enabled or not.
    
    Tested for x86_64.
    
    	* csu/Makefile (generated): Do not add version-info.h.
    	(before-compile): Likewise.
    	(all-Banner-files): Remove variable.
    	($(objpfx)version-info.h): Remove rule.
    	* csu/version.c (banner): Do not include "version-info.h".
    	* libidn/Banner: Remove.
    	* manual/contrib.texi (Simon Josefsson): New entry.

diff --git a/ChangeLog b/ChangeLog
index d3c4468..e4f304e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2017-09-22  Joseph Myers  <joseph@codesourcery.com>
+
+	* csu/Makefile (generated): Do not add version-info.h.
+	(before-compile): Likewise.
+	(all-Banner-files): Remove variable.
+	($(objpfx)version-info.h): Remove rule.
+	* csu/version.c (banner): Do not include "version-info.h".
+	* libidn/Banner: Remove.
+	* manual/contrib.texi (Simon Josefsson): New entry.
+
 2017-09-21  Gabriel F. T. Gomes  <gabriel@inconstante.eti.br>
 
 	* sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
diff --git a/csu/Makefile b/csu/Makefile
index 490d0b0..fd668a5 100644
--- a/csu/Makefile
+++ b/csu/Makefile
@@ -39,8 +39,6 @@ omit-deps = $(patsubst %.o,%,$(start-installed-name) g$(start-installed-name) \
 			     b$(start-installed-name) $(csu-dummies) \
 			     S$(start-installed-name))
 install-lib = $(start-installed-name) g$(start-installed-name) $(csu-dummies)
-generated += version-info.h
-before-compile += $(objpfx)version-info.h
 
 # No tests are allowed in the csu/ subdirectory because the startup
 # code is compiled with special flags.
@@ -149,16 +147,3 @@ $(objpfx)abi-tag.h: $(..)abi-tags
 	done
 	if test -r $@.new; then mv -f $@.new $@; \
 	else echo >&2 'This configuration not matched in $<'; exit 1; fi
-
-all-Banner-files = $(wildcard $(addsuffix /Banner,\
-					  $(sort $(subdir-srcdirs) \
-						 $(sysdeps-srcdirs))))
-$(objpfx)version-info.h: $(common-objpfx)config.make $(all-Banner-files)
-	$(make-target-directory)
-	(files="$(all-Banner-files)";				\
-	 if test -n "$$files"; then				\
-	   printf '"Available extensions:\\n"\n';		\
-	   sed -e '/^#/d' -e 's/^[[:space:]]*/	/'		\
-	       -e 's/^\(.*\)$$/\"\1\\n\"/' $$files;		\
-	 fi) > $@T
-	mv -f $@T $@
diff --git a/csu/version.c b/csu/version.c
index f3992ab..8e86d49 100644
--- a/csu/version.c
+++ b/csu/version.c
@@ -30,7 +30,6 @@ This is free software; see the source for copying conditions.\n\
 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
 PARTICULAR PURPOSE.\n\
 Compiled by GNU CC version "__VERSION__".\n"
-#include "version-info.h"
 #ifdef LIBC_ABIS_STRING
 LIBC_ABIS_STRING
 #endif
diff --git a/libidn/Banner b/libidn/Banner
deleted file mode 100644
index c31e757..0000000
--- a/libidn/Banner
+++ /dev/null
@@ -1 +0,0 @@
-GNU Libidn by Simon Josefsson
diff --git a/manual/contrib.texi b/manual/contrib.texi
index 62798b0..fbf42db 100644
--- a/manual/contrib.texi
+++ b/manual/contrib.texi
@@ -176,6 +176,9 @@ software floating-point support and for
 his direction as part of @theglibc{} steering committee.
 
 @item
+Simon Josefsson for the @code{libidn} add-on.
+
+@item
 Geoffrey Keating for the port to Linux on PowerPC
 (@code{powerpc-@var{anything}-linux}).
 

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

Summary of changes:
 ChangeLog           |   10 ++++++++++
 csu/Makefile        |   15 ---------------
 csu/version.c       |    1 -
 libidn/Banner       |    1 -
 manual/contrib.texi |    3 +++
 5 files changed, 13 insertions(+), 17 deletions(-)
 delete mode 100644 libidn/Banner


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]