diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2021-01-27 19:14:18 +0800 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2021-01-27 19:14:18 +0800 |
commit | 1741835dc59f724098d64cc9a81443f8390d3908 (patch) | |
tree | 0a88db9260629ba55ad77fe41e1b6904eabc4066 | |
parent | afc48c275f2331a4540759ee73b820df7dfd0fbf (diff) | |
download | freebsd-ports-gnome-1741835dc59f724098d64cc9a81443f8390d3908.tar.gz freebsd-ports-gnome-1741835dc59f724098d64cc9a81443f8390d3908.tar.zst freebsd-ports-gnome-1741835dc59f724098d64cc9a81443f8390d3908.zip |
math/scilab:
- Add patch from AUR to fix build with upcoming hdf5-1.12
PR: 251894
PR: 252967
-rw-r--r-- | math/scilab/files/patch-hdf5 | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/math/scilab/files/patch-hdf5 b/math/scilab/files/patch-hdf5 new file mode 100644 index 000000000000..3e17face6795 --- /dev/null +++ b/math/scilab/files/patch-hdf5 @@ -0,0 +1,81 @@ +diff -Naur modules/hdf5/Makefile.am modules/hdf5/Makefile.am +--- modules/hdf5/Makefile.am ++++ modules/hdf5/Makefile.am +@@ -103,8 +103,7 @@ + -DH5Gopen_vers=2 \ + -DH5Tget_array_dims_vers=2 \ + -DH5Acreate_vers=2 \ +- -DH5Rdereference_vers=2 \ +- -DNO_DEPRECATED_SYMBOLS ++ -DH5Rdereference_vers=2 + + + libscihdf5_la_CPPFLAGS = \ +diff -Naur modules/hdf5/Makefile.in modules/hdf5/Makefile.in +--- modules/hdf5/Makefile.in ++++ modules/hdf5/Makefile.in +@@ -788,8 +788,7 @@ + -DH5Gopen_vers=2 \ + -DH5Tget_array_dims_vers=2 \ + -DH5Acreate_vers=2 \ +- -DH5Rdereference_vers=2 \ +- -DNO_DEPRECATED_SYMBOLS ++ -DH5Rdereference_vers=2 + + libscihdf5_la_CPPFLAGS = \ + -I$(srcdir)/includes/ \ +diff -Naur modules/hdf5/includes/HDF5Objects.h modules/hdf5/includes/HDF5Objects.h +--- modules/hdf5/includes/HDF5Objects.h ++++ modules/hdf5/includes/HDF5Objects.h +@@ -16,14 +16,12 @@ + #ifndef __HDF5OBJECTS_H__ + #define __HDF5OBJECTS_H__ + +-#define H5_NO_DEPRECATED_SYMBOLS + #undef H5_USE_16_API ++#define H5_USE_18_API + +-#define H5Eset_auto_vers 2 + #include <hdf5.h> + #include <hdf5_hl.h> + +-#undef H5_NO_DEPRECATED_SYMBOLS + + //#define __HDF5OBJECTS_DEBUG__ + //#define __HDF5ERROR_PRINT__ +diff -Naur modules/hdf5/sci_gateway/cpp/sci_hdf5_listvar_v3.cpp modules/hdf5/sci_gateway/cpp/sci_hdf5_listvar_v3.cpp +--- modules/hdf5/sci_gateway/cpp/sci_hdf5_listvar_v3.cpp ++++ modules/hdf5/sci_gateway/cpp/sci_hdf5_listvar_v3.cpp +@@ -13,6 +13,8 @@ + * + */ + ++#define H5_USE_18_API ++ + #include <vector> + #include "function.hxx" + #include "string.hxx" +diff -Naur modules/hdf5/src/c/h5_readDataFromFile.c modules/hdf5/src/c/h5_readDataFromFile.c +--- modules/hdf5/src/c/h5_readDataFromFile.c ++++ modules/hdf5/src/c/h5_readDataFromFile.c +@@ -13,7 +13,7 @@ + * + */ + +-#define H5_NO_DEPRECATED_SYMBOLS ++#define H5_USE_18_API + + #ifndef _MSC_VER + #include <sys/time.h> +diff -Naur modules/hdf5/src/c/h5_readDataFromFile_v1.c modules/hdf5/src/c/h5_readDataFromFile_v1.c +--- modules/hdf5/src/c/h5_readDataFromFile_v1.c ++++ modules/hdf5/src/c/h5_readDataFromFile_v1.c +@@ -13,7 +13,7 @@ + * + */ + +-#define H5_NO_DEPRECATED_SYMBOLS ++#define H5_USE_18_API + + #ifndef _MSC_VER + #include <sys/time.h> |