Skip to content
Snippets Groups Projects
Commit fe40c2f1 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Fix incorrect detection and usage of netcdf_par.h during configure [Bug #9855].

parent 337c8dcd
No related branches found
No related tags found
1 merge request!7Replaced gridDefDatatype()/gridInqDatatype() by cdiDefKeyInt()/cdiInqKeyInt()...
......@@ -3,6 +3,10 @@
* using CGRIBEX library version 1.9.5
* Version 1.9.9 released
2020-08-16 Matthew Krupcale
* Fix incorrect detection and usage of netcdf_par.h during configure [Bug #9855]
2020-08-09 Uwe Schulzweida
* Fix problem with GRIB2 key indicatorOfUnitForTimeRange [Bug #9846]
......
......@@ -227,12 +227,13 @@ main(int argc, char **argv)
[HAVE_PARALLEL_NC4=1],
[AC_MSG_WARN([The supplied netCDF library does not support MPI parallel invocations])],
[AC_INCLUDES_DEFAULT
@%:@include <netcdf.h>
@%:@include <netcdf_par.h>])],
[AC_CHECK_DECL([MPI_Bcast],
[HAVE_PARALLEL_NC4=1],
[AC_MSG_WARN([The supplied netCDF library does not support MPI parallel invocations])],
[AC_INCLUDES_DEFAULT
@%:@include <netcdf.h>])], [AC_INCLUDES_DEFAULT])
@%:@ifdef HAVE_NETCDF_H
@%:@include <netcdf.h>
@%:@endif])
dnl parallel netCDF support still requires ScalES-PPM and YAXT to
dnl re-arrange the data when running with more than one collector
PKG_CHECK_MODULES([PPM_CORE],[scales-ppm-core],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment