Skip to content

Commit

Permalink
[NetCDF] add patch related to Unidata/netcdf-c#2352 (#4934)
Browse files Browse the repository at this point in the history
* add patch related to Unidata/netcdf-c#2352

* bump version_offset
  • Loading branch information
Alexander-Barth authored May 23, 2022
1 parent 093fdc9 commit cb28df6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion N/NetCDF/NetCDF@julia-1.8/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include("../common.jl")


# Offset to add to the version number. Remember to always bump this.
version_offset = v"0.2.2"
version_offset = v"0.2.3"

# Minimum Julia version supported: this is important to decide which versions of
# the dependencies to use, in particular the JLL stdlibs.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
From bdafbf13ade3d75feeed07b9190c718e092ac3f6 Mon Sep 17 00:00:00 2001
From: Alexander Barth <barth.alexander@gmail.com>
Date: Fri, 13 May 2022 13:44:35 +0200
Subject: [PATCH] save rc in globalstate->rcinfo.triples

---
libdispatch/drc.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/libdispatch/drc.c b/libdispatch/drc.c
index 64d34bd5..d39f133a 100644
--- a/libdispatch/drc.c
+++ b/libdispatch/drc.c
@@ -513,6 +513,7 @@ NC_rcfile_insert(const char* key, const char* value, const char* hostport)

if(rc == NULL) {
rc = nclistnew();
+ globalstate->rcinfo.triples = rc;
if(rc == NULL) {ret = NC_ENOMEM; goto done;}
}
triple = rclocate(key,hostport);
--
2.25.1

0 comments on commit cb28df6

Please sign in to comment.