-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from ocefpaf/v4.9.0
V4.9.0
- Loading branch information
Showing
11 changed files
with
1,014 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
recipe/patches/0006-Fix-tests-for-Windows-VS2008-define-__func__-as-__FU.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
--- netcdf-c-4.6.3.orig/config.h.cmake.in 2019-02-28 17:40:34.000000000 -0300 | ||
+++ netcdf-c-4.6.3/config.h.cmake.in 2019-03-04 12:40:57.383805113 -0300 | ||
@@ -67,6 +67,9 @@ | ||
#endif | ||
--- netcdf-c-4.9.0.orig/config.h.cmake.in 2022-06-10 18:04:15.000000000 -0300 | ||
+++ netcdf-c-4.9.0/config.h.cmake.in 2022-06-13 09:07:44.793148154 -0300 | ||
@@ -57,6 +57,10 @@ | ||
#define _OFF_T_DEFINED | ||
#endif | ||
|
||
+ #if _MSC_VER<1900 | ||
+ #define __func__ __FUNCTION__ | ||
+ #endif | ||
+ | ||
#define strdup _strdup | ||
#define fdopen _fdopen | ||
#define write _write |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/netcdf-c-v4.9.0/ncdump/CMakeLists.txt b/netcdf-c-fixed/ncdump/CMakeLists.txt | ||
index 056810f..52dae3b 100644 | ||
--- a/netcdf-c-v4.9.0/ncdump/CMakeLists.txt | ||
+++ b/netcdf-c-fixed/ncdump/CMakeLists.txt | ||
@@ -256,7 +256,7 @@ endif() | ||
add_sh_test(ncdump tst_netcdf4_4) | ||
add_sh_test(ncdump tst_nccopy4) | ||
|
||
- SET_TESTS_PROPERTIES(ncdump_tst_nccopy4 PROPERTIES DEPENDS "ncdump_run_ncgen_tests;ncdump_tst_output;ncdump_tst_ncgen4;ncdump_tst_fillbug;ncdump_tst_netcdf4_4;ncdump_tst_h_scalar;tst_comp;tst_comp2") | ||
+ SET_TESTS_PROPERTIES(ncdump_tst_nccopy4 PROPERTIES DEPENDS "ncdump_run_ncgen_tests;ncdump_tst_output;ncdump_tst_ncgen4;ncdump_sh_tst_fillbug;ncdump_tst_netcdf4_4;ncdump_tst_h_scalar;tst_comp;tst_comp2;tst_nans;tst_opaque_data;tst_create_files;tst_special_atts") | ||
SET_TESTS_PROPERTIES(ncdump_tst_nccopy5 PROPERTIES DEPENDS "ncdump_tst_nccopy4") | ||
|
||
ENDIF(USE_HDF5) |
Oops, something went wrong.