patches/mpc/0.8.1/100-fix-build-with-mpfr-3_0_9.diff
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 03 23:40:22 2011 +0100 (2011-01-03)
changeset 2267 7af68e6083aa
permissions -rw-r--r--
libc-glibc: remove 2.3.6

This is an obsolete version which is no longer used by any sample (the only
user, the ia64 sample, has been removed).

It also makes the code path a bit complex, with twists just to accomodate
that version. Removing the version will make those twists go away, and
will ease commonalisation of glibc and eglibc in the future (hopefully!).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
lacombar@2069
     1
--- trunk/src/acos.c	2009/12/08 16:49:43	733
lacombar@2069
     2
+++ trunk/src/acos.c	2009/12/09 20:51:38	734
lacombar@2069
     3
@@ -188,10 +188,7 @@
lacombar@2069
     4
   else
lacombar@2069
     5
     rnd_im = rnd_im == GMP_RNDU ? GMP_RNDD
lacombar@2069
     6
       : rnd_im == GMP_RNDD ? GMP_RNDU
lacombar@2069
     7
-#if MPFR_VERSION_MAJOR >= 3
lacombar@2069
     8
-      : rnd_im == GMP_RNDA ? GMP_RNDZ
lacombar@2069
     9
-#endif
lacombar@2069
    10
-      : rnd_im;
lacombar@2069
    11
+      : rnd_im; /* both RNDZ and RNDA map to themselves for -asin(z) */
lacombar@2069
    12
   rnd1 = RNDC(GMP_RNDN, rnd_im);
lacombar@2069
    13
   mpfr_init2 (pi_over_2, p);
lacombar@2069
    14
   for (;;)