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, hjl/abi, updated. glibc-2.15-1034-g118759a


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, hjl/abi has been updated
       via  118759a5bfa9a027617ef7c5dac3fa0daf1e824c (commit)
       via  58f34255ab6fffdd84cd45fade7330ead1573cbf (commit)
       via  f8591f8049a401c898737ca843d87872b93e6ccc (commit)
       via  94c7d826c97ec1ae6ced9f83fe1fe6cfcc235edb (commit)
       via  ce73d683974b3efc9e477cecb62d178e12cd1421 (commit)
       via  72a22e596cb1359fc7e05de6d5de6f35f3eb5785 (commit)
       via  68605433483b08e8a31541d833bf92ff3ecad75c (commit)
       via  03cf7fe31be5964707a54ed82969b9c181f8dd99 (commit)
       via  f04dfbc244efb683e395d40c08c86fb93e679167 (commit)
       via  62bdf9a68363655f0a3d03f930de2bda97a161cc (commit)
      from  7348f481c8db2f499cebed8438f7d28485627fa6 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=118759a5bfa9a027617ef7c5dac3fa0daf1e824c

commit 118759a5bfa9a027617ef7c5dac3fa0daf1e824c
Merge: 58f3425 f8591f8
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed May 23 18:25:00 2012 -0700

    Merge remote-tracking branch 'origin/master' into hjl/abi


http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=58f34255ab6fffdd84cd45fade7330ead1573cbf

commit 58f34255ab6fffdd84cd45fade7330ead1573cbf
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed May 23 18:23:46 2012 -0700

    Rename syscall-list-* to abi-list-*

diff --git a/ChangeLog.abi b/ChangeLog.abi
index 7b53a47..8a7e3ea 100644
--- a/ChangeLog.abi
+++ b/ChangeLog.abi
@@ -44,3 +44,12 @@
 	(abi-list-x32-condition): Likewise.
 	* sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
 	macro.
+	* sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-variants):
+	Renamed to ...
+	(abi-list-variants): This.
+	(syscall-list-32bit-*): Renamed to ...
+	(abi-list-32-*): This.
+	(syscall-list-64bit-*): Renamed to ...
+	(abi-list-64-*): This.
+	* sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
+	* sysdeps/unix/sysv/linux/sparc/Makefile: Likewise.
diff --git a/sysdeps/unix/sysv/linux/powerpc/Makefile b/sysdeps/unix/sysv/linux/powerpc/Makefile
index 55311a4..3b012a2 100644
--- a/sysdeps/unix/sysv/linux/powerpc/Makefile
+++ b/sysdeps/unix/sysv/linux/powerpc/Makefile
@@ -1,8 +1,8 @@
-syscall-list-variants := 32bit 64bit
-syscall-list-32bit-options := -U__powerpc64__
-syscall-list-32bit-condition := __WORDSIZE == 32
-syscall-list-64bit-options := -D__powerpc64__
-syscall-list-64bit-condition := __WORDSIZE == 64
+abi-list-variants := 32 64
+abi-list-32-options := -U__powerpc64__
+abi-list-32-condition := __WORDSIZE == 32
+abi-list-64-options := -D__powerpc64__
+abi-list-64-condition := __WORDSIZE == 64
 
 ifeq ($(subdir),rt)
 librt-routines += rt-sysdep
diff --git a/sysdeps/unix/sysv/linux/s390/Makefile b/sysdeps/unix/sysv/linux/s390/Makefile
index fb20fb0..2fd53f4 100644
--- a/sysdeps/unix/sysv/linux/s390/Makefile
+++ b/sysdeps/unix/sysv/linux/s390/Makefile
@@ -1,8 +1,8 @@
-syscall-list-variants := 32bit 64bit
-syscall-list-32bit-options := -U__s390x__
-syscall-list-32bit-condition := __WORDSIZE == 32
-syscall-list-64bit-options := -D__s390x__
-syscall-list-64bit-condition := __WORDSIZE == 64
+abi-list-variants := 32 64
+abi-list-32-options := -U__s390x__
+abi-list-32-condition := __WORDSIZE == 32
+abi-list-64-options := -D__s390x__
+abi-list-64-condition := __WORDSIZE == 64
 
 ifeq ($(subdir),rt)
 librt-routines += rt-sysdep
diff --git a/sysdeps/unix/sysv/linux/sparc/Makefile b/sysdeps/unix/sysv/linux/sparc/Makefile
index d769c48..3f7af37 100644
--- a/sysdeps/unix/sysv/linux/sparc/Makefile
+++ b/sysdeps/unix/sysv/linux/sparc/Makefile
@@ -1,8 +1,8 @@
-syscall-list-variants := 32bit 64bit
-syscall-list-32bit-options := -U__sparc_v9__ -U__arch64__
-syscall-list-32bit-condition := __WORDSIZE == 32
-syscall-list-64bit-options := -D__sparc_v9__ -D__arch64__
-syscall-list-64bit-condition := __WORDSIZE == 64
+abi-list-variants := 32 64
+abi-list-32-options := -U__sparc_v9__ -U__arch64__
+abi-list-32-condition := __WORDSIZE == 32
+abi-list-64-options := -D__sparc_v9__ -D__arch64__
+abi-list-64-condition := __WORDSIZE == 64
 
 ifeq ($(subdir),rt)
 librt-routines += rt-sysdep

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

Summary of changes:
 ChangeLog                                |   47 +++++++
 ChangeLog.abi                            |    9 ++
 sysdeps/unix/sysv/linux/powerpc/Makefile |   10 +-
 sysdeps/unix/sysv/linux/s390/Makefile    |   10 +-
 sysdeps/unix/sysv/linux/sparc/Makefile   |   10 +-
 time/mktime.c                            |  198 ++++++++++++++++++++---------
 6 files changed, 207 insertions(+), 77 deletions(-)


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]