Completely remove BIND 9 Windows support

The Windows support has been completely removed from the source tree
and BIND 9 now no longer supports native compilation on Windows.

We might consider reviewing mingw-w64 port if contributed by external
party, but no development efforts will be put into making BIND 9 compile
and run on Windows again.
This commit is contained in:
Ondřej Surý
2021-05-20 15:53:50 +02:00
parent ad130e4509
commit 440fb3d225
398 changed files with 222 additions and 38006 deletions

View File

@@ -147,11 +147,7 @@ ns_plugin_expandpath_test(void **state) {
.input = "foo.so",
.output_size = PATH_MAX,
.result = ISC_R_SUCCESS,
#ifndef WIN32
.output = NAMED_PLUGINDIR "/foo.so",
#else /* ifndef WIN32 */
.output = "foo.so",
#endif /* ifndef WIN32 */
},
{
NS_TEST_ID("no space at all in target buffer"),
@@ -171,14 +167,12 @@ ns_plugin_expandpath_test(void **state) {
.output_size = 7,
.result = ISC_R_NOSPACE,
},
#ifndef WIN32
{
NS_TEST_ID("target buffer too small to fit full path"),
.input = "foo.so",
.output_size = 7,
.result = ISC_R_NOSPACE,
},
#endif /* ifndef WIN32 */
};
for (i = 0; i < sizeof(tests) / sizeof(tests[0]); i++) {