netcdf-c/ncgen3
Dennis Heimbigner d3f6c126b6 Fix Mingw versus XGetopt (again)
re: https://github.com/Unidata/netcdf-c/pull/2003#issuecomment-847637871

Turns out that mingw defines both _WIN32 and also defines getopt.
This means that this test:
````
#ifdef _WIN32
#include "XGetopt.h"
#endif
````
fails on this error:
````
../include/XGetopt.h:38:24: error: conflicting types for 'getopt'
````

Fix is to replace
````
#ifdef _WIN32
with
#if defined(_WIN32) && !defined(__MINGW32__)
````
2021-05-26 14:27:27 -06:00
..
bigf1.cdl
bigf2.cdl
bigf3.cdl
bigr1.cdl
bigr2.cdl
bigr3.cdl
c0.cdl merge-squash 2015-08-15 16:26:35 -06:00
CMakeLists.txt Revert "Revert "Fix nczarr-experimental: improve build support, disengage hdf5 vs netcdf4 flags, and find AWS libraries"" 2020-08-17 19:15:47 -06:00
depend
escapes.c ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
generic.h ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
genlib.c ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
genlib.h ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
getfill.c ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
init.c ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
lfs-tests Fix pull request https://github.com/Unidata/netcdf-c/pull/374 (dap4.dmh) 2017-04-03 21:39:44 -06:00
load.c ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
main_cpp.cpp This PR adds EXPERIMENTAL support for accessing data in the 2020-06-28 18:02:47 -06:00
main.c Fix Mingw versus XGetopt (again) 2021-05-26 14:27:27 -06:00
Makefile.am Codify cross-platform file paths 2021-03-04 13:41:31 -07:00
ncgen3.1 hyphens used as minus signs 2015-01-16 13:12:11 +01:00
ncgen.h ncgen3 copyright stanzas updated. 2018-12-06 15:42:41 -07:00
ncgen.l Update parser/lexer build process for ncgen3 2020-07-29 16:13:17 -06:00
ncgen.y Codify cross-platform file paths 2021-03-04 13:41:31 -07:00
ncgenl.c CMake fixes 2020-07-29 17:59:19 -06:00
ncgeny.c Codify cross-platform file paths 2021-03-04 13:41:31 -07:00
ncgeny.h CMake fixes 2020-07-29 17:59:19 -06:00
run_nc4_tests.sh Primary change: add dap4 support 2017-03-08 17:01:10 -07:00
run_tests2.sh Fix pull request https://github.com/Unidata/netcdf-c/pull/374 (dap4.dmh) 2017-04-03 21:39:44 -06:00
run_tests.sh Primary change: add dap4 support 2017-03-08 17:01:10 -07:00