aboutsummaryrefslogtreecommitdiff
path: root/ports/arb/fix-build-error.patch
diff options
context:
space:
mode:
authorJackBoosY <47264268+JackBoosY@users.noreply.github.com>2019-11-01 04:04:30 +0800
committerRobert Schumacher <roschuma@microsoft.com>2019-10-31 13:04:30 -0700
commitd2cd3ad6625b92bc7901208013a9e87739d27f3f (patch)
tree8b1623fdff412ea301d0059ffd510387193b761f /ports/arb/fix-build-error.patch
parent81fbbf8d964c111063b1e58dac61bc20c38e37f9 (diff)
downloadvcpkg-d2cd3ad6625b92bc7901208013a9e87739d27f3f.tar.gz
vcpkg-d2cd3ad6625b92bc7901208013a9e87739d27f3f.zip
[arb]Upgrade to 2.17.0 (#8831)
Diffstat (limited to 'ports/arb/fix-build-error.patch')
-rw-r--r--ports/arb/fix-build-error.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/ports/arb/fix-build-error.patch b/ports/arb/fix-build-error.patch
deleted file mode 100644
index 7ed2428cf..000000000
--- a/ports/arb/fix-build-error.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/acb_dirichlet/stieltjes.c b/acb_dirichlet/stieltjes.c
-index ad6937b..4ca9690 100644
---- a/acb_dirichlet/stieltjes.c
-+++ b/acb_dirichlet/stieltjes.c
-@@ -340,16 +340,16 @@ stieltjes_mag(double n)
- return t;
- }
-
--static double _hypot(double x, double y) { return sqrt(x * x + y * y); }
-+static double __hypot(double x, double y) { return sqrt(x * x + y * y); }
-
- /* log2 magnitude of integrand at z = x+yi; alpha = a+bi */
- static double
- integrand_mag(double n, double x, double y, double a, double b)
- {
- double t, u;
-- t = log(_hypot(a - y, b + x));
-+ t = log(__hypot(a - y, b + x));
- u = atan2(b + x, a - y);
-- t = log(_hypot(t,u)) * (n+1) - 2.0 * 3.1415926535897932 * x;
-+ t = log(__hypot(t,u)) * (n+1) - 2.0 * 3.1415926535897932 * x;
- return t * 1.44269504088896341;
- }
-