Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
83a201ca
Commit
83a201ca
authored
1 month ago
by
Oliver Heidmann
Browse files
Options
Downloads
Patches
Plain Diff
added feature functions to remove reliance on ifdefs in other libraries
parent
932dd558
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!121
M300433/cmake improvements and define cleanups
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/cdi.h
+3
-0
3 additions, 0 deletions
src/cdi.h
src/cdi_int.c
+18
-0
18 additions, 0 deletions
src/cdi_int.c
with
21 additions
and
0 deletions
src/cdi.h
+
3
−
0
View file @
83a201ca
...
...
@@ -1450,6 +1450,9 @@ extern int (*proj_stere_to_lonlat_func)(struct CDI_GridProjParams gpp, double, d
// Used on CDO remap_scrip_io.cc
void
cdf_def_var_filter
(
int
ncid
,
int
ncvarID
,
const
char
*
filterSpec
);
int
cdi_has_dap
();
int
cdi_has_cgribex
();
#ifdef __cplusplus
}
#endif
...
...
This diff is collapsed.
Click to expand it.
src/cdi_int.c
+
18
−
0
View file @
83a201ca
...
...
@@ -590,6 +590,24 @@ stream_def_accesstype(stream_t *s, int type)
Error
(
"Changing access type from %s not allowed!"
,
s
->
accesstype
==
TYPE_REC
?
"REC to VAR"
:
"VAR to REC"
);
}
int
cdi_has_dap
()
{
#ifdef HAVE_LIBNC_DAP
return
1
;
#endif
return
0
;
}
int
cdi_has_cgribex
()
{
#ifdef HAVE_LIBCGRIBEX
return
1
;
#endif
return
0
;
}
/*
* Local Variables:
* c-file-style: "Java"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment