From d1e2d39b5a936f71595a2b9b372cafe9d884483e Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 25 Mar 2023 17:39:15 +0100 Subject: meson: fix a typo in a variable name this made meson fail on Windows --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index aff697b3..944c36b0 100644 --- a/meson.build +++ b/meson.build @@ -62,7 +62,7 @@ at_spi_conf.set_quoted('GETTEXT_PACKAGE', meson.project_name()) # Symbol visibility if get_option('default_library') != 'static' if host_system == 'windows' - atspi_conf.set('DLL_EXPORT', true) + at_spi_conf.set('DLL_EXPORT', true) at_spi_conf.set('_ATK_EXTERN', '__declspec(dllexport) extern') if cc.get_id() != 'msvc' test_cflags += ['-fvisibility=hidden'] -- cgit v1.2.1