patches/mpc/0.8.1/100-fix-build-with-mpfr-3_0_9.diff
author Jang, Bongseo <graycells@gmail.com>
Sun Sep 23 11:18:30 2012 +0900 (2012-09-23)
changeset 3058 2800ef0ff450
permissions -rw-r--r--
libc/eglibc: Split changeset 3052:06b663f297 into eglibc/libc and eglibc/ports patches

crosstool-ng's glibc patche is made against glibc/libc sub-dir.
changeset 3052:06b663f297 is against glibc top-dir. it needs to split.

Signed-off-by: "Jang, Bongseo" <graycells@gmail.com>
[yann.morin.1998@free.fr: fix the ports patches depth]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-ID: <5040c8e83e35618361dc.1348370890@localhost.localdomain>
PatchWork-ID: 186177
     1 --- trunk/src/acos.c	2009/12/08 16:49:43	733
     2 +++ trunk/src/acos.c	2009/12/09 20:51:38	734
     3 @@ -188,10 +188,7 @@
     4    else
     5      rnd_im = rnd_im == GMP_RNDU ? GMP_RNDD
     6        : rnd_im == GMP_RNDD ? GMP_RNDU
     7 -#if MPFR_VERSION_MAJOR >= 3
     8 -      : rnd_im == GMP_RNDA ? GMP_RNDZ
     9 -#endif
    10 -      : rnd_im;
    11 +      : rnd_im; /* both RNDZ and RNDA map to themselves for -asin(z) */
    12    rnd1 = RNDC(GMP_RNDN, rnd_im);
    13    mpfr_init2 (pi_over_2, p);
    14    for (;;)