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.18-384-g7ab4456


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  7ab44563a9c8118ce47da29919540c793f549774 (commit)
      from  e8470ea216ec2ed999e17498ce13fb66e3d09be3 (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=7ab44563a9c8118ce47da29919540c793f549774

commit 7ab44563a9c8118ce47da29919540c793f549774
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
Date:   Wed Nov 13 12:58:56 2013 -0600

    PowerPC: Fix __fe_mask_env export
    
    Change SHLIB_COMPAT calls to GLIBC_2_19 for __fe_nomask_env symbol.

diff --git a/ChangeLog b/ChangeLog
index a7b3418..e9089c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+	* sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
+	(__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
+	(__fe_nomask_env): Likewise.
+
 2013-11-13  Steve Ellcey  <sellcey@mips.com>
 
 	* benchtests/bench-timing.h: Include time.h.
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
index dd3ec46..5a94dc5 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
@@ -33,6 +33,6 @@ __fe_nomask_env (void)
 
   return FE_ENABLED_ENV;
 }
-#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_18)
+#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_19)
 compat_symbol (libm, __fe_nomask_env, __fe_nomask_env, GLIBC_2_1);
 #endif
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
index 5172f65..70661ad 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
@@ -35,6 +35,6 @@ __fe_nomask_env (void)
 #endif
   return FE_ENABLED_ENV;
 }
-#if SHLIB_COMPAT (libm, GLIBC_2_3, GLIBC_2_18)
+#if SHLIB_COMPAT (libm, GLIBC_2_3, GLIBC_2_19)
 compat_symbol (libm, __fe_nomask_env, __fe_nomask_env, GLIBC_2_3);
 #endif

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

Summary of changes:
 ChangeLog                                          |    7 +++++++
 .../sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c   |    2 +-
 .../sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c   |    2 +-
 3 files changed, 9 insertions(+), 2 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]