Skip to content

Commit db0b6a3

Browse files
bcapenerigaw
authored andcommitted
build: remove unneeded windows check
Upon further investigation this Windows check is no longer needed now that we are using the MSYS2 environment. The code used to check whether netdb is supported, `have_netdb`, compiles on MSYS2 and does not produce errors during build configuration. Signed-off-by: Brandon Capener <[email protected]>
1 parent 27f8dde commit db0b6a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ want_examples = get_option('examples') and host_system != 'windows'
5959
want_docs = get_option('docs')
6060
want_docs_build = get_option('docs-build')
6161

62-
is_static = get_option('default_library') == 'static' and host_system != 'windows'
62+
is_static = get_option('default_library') == 'static'
6363

6464
feature_python = get_option('python')
6565
if not want_fabrics or feature_python.disabled()

0 commit comments

Comments
 (0)