patches/mpc/0.8.1/100-fix-build-with-mpfr-3_0_9.diff
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 17:54:21 2011 +0200 (2011-07-17)
changeset 2888 dd71df95903a
permissions -rw-r--r--
cc/gcc: pass the companion libs prefix to cc_core

In case of canadian-cross, the companion libraries are not the same for
the core cc (they run on 'build') as they are for the final cc (they run
on 'host').

Prepare for this differentiation (coming later), while retaining the
current behavior (to use the same compblibs).

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 (;;)