about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu
diff options
context:
space:
mode:
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>2013-11-13 06:45:19 -0600
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>2013-11-13 06:45:19 -0600
commit7a2ad8cf392acfcaef319e722dda9101d4d8b6bd (patch)
treec525169182b6b1d21663865c26224974f4541aa1 /sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu
parent50727aa76b42c3b989a8c0612eb7f63e29aa7fec (diff)
downloadglibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.tar.gz
glibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.tar.xz
glibc-7a2ad8cf392acfcaef319e722dda9101d4d8b6bd.zip
PowerPC: Fix __fe_mask_env export
This patch does not export __fe_mask_env anymore, only providing a
compatibility symbol. It fixes BZ#14143.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c5
1 files changed, 4 insertions, 1 deletions
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 94db79f8e7..dd3ec46b56 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
@@ -23,6 +23,7 @@
 #include <sysdep.h>
 #include <sys/prctl.h>
 #include <kernel-features.h>
+#include <shlib-compat.h>
 
 const fenv_t *
 __fe_nomask_env (void)
@@ -32,4 +33,6 @@ __fe_nomask_env (void)
 
   return FE_ENABLED_ENV;
 }
-libm_hidden_def (__fe_nomask_env)
+#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_18)
+compat_symbol (libm, __fe_nomask_env, __fe_nomask_env, GLIBC_2_1);
+#endif