aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-04-11 22:45:40 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-04-11 22:45:40 +0000
commitcff81a266959df94829d0950f98ca0a325263ffc (patch)
tree07c0a3addbcb96dd9e96d01216c8eb9d3ef48d92
parent872c3e0c82235fd3c081866c8346fb490893a096 (diff)
downloadports-cff81a266959df94829d0950f98ca0a325263ffc.tar.gz
ports-cff81a266959df94829d0950f98ca0a325263ffc.zip
science/dlib-cpp: remove the patch that is now committed upstream and breaks the build on powerpc64le
-rw-r--r--science/dlib-cpp/files/patch-dlib_simd_simd4f.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/science/dlib-cpp/files/patch-dlib_simd_simd4f.h b/science/dlib-cpp/files/patch-dlib_simd_simd4f.h
deleted file mode 100644
index d95e9cd91c12..000000000000
--- a/science/dlib-cpp/files/patch-dlib_simd_simd4f.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- dlib/simd/simd4f.h.orig 2021-01-11 12:18:36 UTC
-+++ dlib/simd/simd4f.h
-@@ -524,6 +524,11 @@ namespace dlib
-
- // ----------------------------------------------------------------------------------------
-
-+#if defined(DLIB_HAVE_VSX) && !defined(vec_rsqrt)
-+extern inline __vector float __attribute__((always_inline)) vec_rsqrt(const __vector float& a)
-+ { return vec_div((__vector float){1, 1, 1, 1}, vec_sqrt(a)); }
-+#endif
-+
- inline simd4f reciprocal_sqrt (const simd4f& item)
- {
- #ifdef DLIB_HAVE_SSE2