Made nccopy aware of USE_CDF5 flag.

This commit is contained in:
Ward Fisher 2017-09-18 14:11:53 -06:00
parent 143fb237f9
commit 3c410f5257

View File

@ -1428,8 +1428,12 @@ copy(char* infile, char* outfile)
create_mode |= NC_64BIT_OFFSET; create_mode |= NC_64BIT_OFFSET;
break; break;
case NC_FORMAT_CDF5: case NC_FORMAT_CDF5:
create_mode |= NC_64BIT_DATA; #ifdef USE_CDF5
break; create_mode |= NC_64BIT_DATA;
#else
error("netCDF library built without CDF5 support, can't create CDF5 files");
break;
#endif
#ifdef USE_NETCDF4 #ifdef USE_NETCDF4
case NC_FORMAT_NETCDF4: case NC_FORMAT_NETCDF4:
create_mode |= NC_NETCDF4; create_mode |= NC_NETCDF4;