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.19-670-gc5241f9


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  c5241f9575dd89ce6714963ecb3a114ece13f1a7 (commit)
      from  911422da02cfb683f9d97c46e7a4049449ec1a23 (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=c5241f9575dd89ce6714963ecb3a114ece13f1a7

commit c5241f9575dd89ce6714963ecb3a114ece13f1a7
Author: Andreas Schwab <schwab@suse.de>
Date:   Tue Jun 24 09:41:02 2014 +0200

    m68k: Add compat symbols for scalbln*

diff --git a/ChangeLog b/ChangeLog
index 9409918..62d7605 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-06-25  Andreas Schwab  <schwab@suse.de>
+
+	[BZ #17086]
+	* sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
+	scalbln, scalblnf, scalblnl in libc.
+
 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
 	[BZ #17086]
diff --git a/sysdeps/m68k/m680x0/fpu/s_scalbn.c b/sysdeps/m68k/m680x0/fpu/s_scalbn.c
index f520f7d..a14a712 100644
--- a/sysdeps/m68k/m680x0/fpu/s_scalbn.c
+++ b/sysdeps/m68k/m680x0/fpu/s_scalbn.c
@@ -47,3 +47,9 @@ __CONCATX(__scalbn,suffix) (x, exp)
 }
 weak_alias (__CONCATX(__scalbn,suffix), __CONCATX(scalbn,suffix))
 strong_alias (__CONCATX(__scalbn,suffix), __CONCATX(__scalbln,suffix))
+
+#include <shlib-compat.h>
+#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20)
+compat_symbol (libc, __CONCATX(__scalbn,suffix), __CONCATX(scalbln,suffix),
+	       GLIBC_2_1);
+#endif

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

Summary of changes:
 ChangeLog                          |    6 ++++++
 sysdeps/m68k/m680x0/fpu/s_scalbn.c |    6 ++++++
 2 files changed, 12 insertions(+), 0 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]