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 roland/add-on-abi-tags created. glibc-2.17-520-ga36f140


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, roland/add-on-abi-tags has been created
        at  a36f1404069be41d167e7f35c5f67e6463558b05 (commit)

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a36f1404069be41d167e7f35c5f67e6463558b05

commit a36f1404069be41d167e7f35c5f67e6463558b05
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Apr 8 13:03:56 2013 -0700

    Handle abi-tags files in add-on directories too.

diff --git a/ChangeLog b/ChangeLog
index 508d2e4..46c273b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2013-04-08  Roland McGrath  <roland@hack.frob.com>
 
+	* csu/Makefile ($(objpfx)abi-tag.h): Handle abi-tags files in add-on
+	directories too.
+
+2013-04-08  Roland McGrath  <roland@hack.frob.com>
+
 	[BZ #14280]
 	* sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
 	when computing value.
diff --git a/csu/Makefile b/csu/Makefile
index 24f0974..6bd5cd8 100644
--- a/csu/Makefile
+++ b/csu/Makefile
@@ -109,10 +109,15 @@ $(addprefix $(objpfx),$(filter-out $(start-installed-name), $(csu-dummies))):\
 	$(COMPILE.c) -o $@ -x c /dev/null
 
 # These headers are used by the startup code.
-$(objpfx)abi-tag.h: $(..)abi-tags
+$(objpfx)abi-tag.h: $(..)abi-tags \
+		    $(foreach add-on,$(add-ons),\
+			      $(firstword $(wildcard \
+				$(addprefix $(firstword $(filter /%,$(add-on)) \
+					    $(..)$(add-on))/,\
+					    abi-tags))))
 	$(make-target-directory)
 	rm -f $@.new
-	sed -e 's/#.*$$//' -e '/^[	]*$$/d' $< | \
+	sed -e 's/#.*$$//' -e '/^[	]*$$/d' $^ | \
 	while read conf tagos tagver; do \
 	  test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
 		     : "$$conf"` != 0 || continue; \
@@ -126,7 +131,7 @@ $(objpfx)abi-tag.h: $(..)abi-tags
 	    echo "#endif" ) > $@.new; \
 	done
 	if test -r $@.new; then mv -f $@.new $@; \
-	else echo >&2 'This configuration not matched in $<'; exit 1; fi
+	else echo >&2 'This configuration not matched in $^'; exit 1; fi
 
 all-Banner-files = $(wildcard $(addsuffix /Banner,\
 					  $(sort $(subdir-srcdirs) \

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4305d6a5bbe63f49ec8d29bec4bbdb30a0f1940f

commit 4305d6a5bbe63f49ec8d29bec4bbdb30a0f1940f
Author: Roland McGrath <roland@hack.frob.com>
Date:   Tue Oct 2 15:56:15 2012 -0700

    Use ElfW(Off) rather than off_t for offsets within ELF files.

diff --git a/ChangeLog b/ChangeLog
index 20be985..508d2e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7889,6 +7889,11 @@
 	* elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
 	Make 'mapoff' field ElfW(Off) rather than off_t.
 
+2012-10-02  Roland McGrath  <roland@hack.frob.com>
+
+	* elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
+	Make 'mapoff' field ElfW(Off) rather than off_t.
+
 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
 
 	* nscd/Makefile: Remove nscd-cflags and all its users.

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


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]