science/seacas: Fix build with science/netcdf 4.9.3

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2025-02-10 06:59:33 -07:00
parent e89fc7ed1f
commit 9f4a0cfc5a
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
- fix build with science/netcdf 4.9.3
--- packages/seacas/libraries/exodus/src/ex_put_prop.c.orig 2025-02-10 17:08:12 UTC
+++ packages/seacas/libraries/exodus/src/ex_put_prop.c
@@ -243,7 +243,7 @@ int ex_put_prop(int exoid, ex_entity_type obj_type, ex
vals[0] = 0; /* fill value */
/* create attribute to cause variable to fill with zeros per routine spec
*/
- if ((status = nc_put_att_longlong(exoid, propid, _FillValue, int_type, 1, vals)) != NC_NOERR) {
+ if ((status = nc_put_att_longlong(exoid, propid, NC_FillValue, int_type, 1, vals)) != NC_NOERR) {
snprintf(errmsg, MAX_ERR_LENGTH,
"ERROR: failed to create property name fill attribute in file id %d", exoid);
ex_err_fn(exoid, __func__, errmsg, status);

View file

@ -0,0 +1,13 @@
- fix build with science/netcdf 4.9.3
--- packages/seacas/libraries/exodus/src/ex_put_prop_names.c.orig 2025-02-10 20:32:48 UTC
+++ packages/seacas/libraries/exodus/src/ex_put_prop_names.c
@@ -172,7 +172,7 @@ int ex_put_prop_names(int exoid, ex_entity_type obj_ty
/* create attribute to cause variable to fill with zeros per routine spec
*/
- if ((status = nc_put_att_longlong(exoid, propid, _FillValue, int_type, 1, vals)) != NC_NOERR) {
+ if ((status = nc_put_att_longlong(exoid, propid, NC_FillValue, int_type, 1, vals)) != NC_NOERR) {
snprintf(errmsg, MAX_ERR_LENGTH,
"ERROR: failed to create property name fill attribute in file id %d", exoid);
ex_err_fn(exoid, __func__, errmsg, status);