Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NetCDF] add patch related to https://github.com/Unidata/netcdf-c/pull/2352 #4934

Merged
merged 2 commits into from
May 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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