diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-03-16 18:16:45 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-03-17 11:40:31 +0100 |
commit | 79af0a321004056c8d47ee8d17f63f8b288bd332 (patch) | |
tree | 96bc094b3c257a2f2af2ab03df79a138153017c9 /sci-libs/netcdf | |
parent | dev-ml/dune: Stabilize 3.6.2 ppc64, #901625 (diff) | |
download | gentoo-79af0a321004056c8d47ee8d17f63f8b288bd332.tar.gz gentoo-79af0a321004056c8d47ee8d17f63f8b288bd332.tar.bz2 gentoo-79af0a321004056c8d47ee8d17f63f8b288bd332.zip |
sci-libs/netcdf: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/30157
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-libs/netcdf')
-rw-r--r-- | sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch b/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch deleted file mode 100644 index 7b711327512a..000000000000 --- a/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch +++ /dev/null @@ -1,46 +0,0 @@ -# Conditionally include execinfo as it's not available on all libc -# systems. There is a PR upstream for a similiar issue but the actual -# issus is not reproducable on Gentoo [math library not found] [1], so -# for now this is a temporary fix and can be removed once the PR [1] -# is merged upstream. -# [1]: https://github.com/Unidata/netcdf-c/pull/1701 -# -# Closes: https://bugs.gentoo.org/828677 ---- a/libhdf5/hdf5debug.c -+++ b/libhdf5/hdf5debug.c -@@ -5,7 +5,7 @@ - #include "config.h" - #include <stdarg.h> - #include <stdio.h> --#if !defined _WIN32 && !defined __CYGWIN__ -+#ifdef HAVE_EXECINFO_H - #include <execinfo.h> - #endif - -@@ -15,15 +15,18 @@ - - #define STSIZE 1000 - -+#ifdef HAVE_EXECINFO_H - #ifdef H5BACKTRACE - # if !defined _WIN32 && !defined __CYGWIN__ - static void* stacktrace[STSIZE]; - # endif - #endif -+#endif - - int - nch5breakpoint(int err) - { -+#ifdef HAVE_EXECINFO_H - #ifdef H5BACKTRACE - # if !defined _WIN32 && !defined __CYGWIN__ - int count = 0; -@@ -39,6 +42,7 @@ nch5breakpoint(int err) - if(trace != NULL) free(trace); - # endif - # endif -+#endif - #endif - return err; - } |