netcdf-c/dap4_test
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
..
baseline Fix some protocol differences between netcdf-c and the Hyrax server. 2020-05-30 17:36:25 -06:00
baselinehyrax Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
baselineraw Fix some protocol differences between netcdf-c and the Hyrax server. 2020-05-30 17:36:25 -06:00
baselineremote Updating files to refer to the top-level COPYRIGHT file. 2018-12-04 15:52:43 -07:00
cdltestfiles Updating files to refer to the top-level COPYRIGHT file. 2018-12-04 15:52:43 -07:00
daptestfiles Updating files to refer to the top-level COPYRIGHT file. 2018-12-04 15:52:43 -07:00
dmrtestfiles Updating files to refer to the top-level COPYRIGHT file. 2018-12-04 15:52:43 -07:00
misctestfiles Fix some protocol differences between netcdf-c and the Hyrax server. 2020-05-30 17:36:25 -06:00
nctestfiles Updating files to refer to the top-level COPYRIGHT file. 2018-12-04 15:52:43 -07:00
CMakeLists.txt Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
d4test_common.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
dump.c Fix Mingw versus XGetopt (again) 2021-05-26 14:27:27 -06:00
Makefile.am Add zip file support 2021-01-28 20:11:01 -07:00
maketests.sh Modify DAP2 and DAP4 to optionally allow Fillvalue/Variable mismatch 2018-10-01 15:51:43 -06:00
test_common.h Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_data.c Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_data.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_environment4.c Primary change: add dap4 support 2017-03-08 17:01:10 -07:00
test_fillmismatch.sh fix test cases 2021-01-07 19:37:03 -07:00
test_hyrax.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_meta.c Primary change: add dap4 support 2017-03-08 17:01:10 -07:00
test_meta.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_parse.c Primary change: add dap4 support 2017-03-08 17:01:10 -07:00
test_parse.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_raw.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_remote.sh Improve operation of the DAP4 code and fix bugs 2021-01-14 21:39:08 -07:00
test_test.sh Modify DAP2 and DAP4 to optionally allow Fillvalue/Variable mismatch 2018-10-01 15:51:43 -06:00
tst_curlopt.sh More NCZarr optimizations 2021-01-06 13:35:59 -07:00
tst_data.sh Modify DAP2 and DAP4 to optionally allow Fillvalue/Variable mismatch 2018-10-01 15:51:43 -06:00
tst_meta.sh Modify DAP2 and DAP4 to optionally allow Fillvalue/Variable mismatch 2018-10-01 15:51:43 -06:00
tst_parse.sh Fix pull request https://github.com/Unidata/netcdf-c/pull/374 (dap4.dmh) 2017-04-03 21:39:44 -06:00
tst_raw.sh Modify DAP2 and DAP4 to optionally allow Fillvalue/Variable mismatch 2018-10-01 15:51:43 -06:00