summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2023-03-25 17:39:15 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2023-03-25 17:42:17 +0100
commitd1e2d39b5a936f71595a2b9b372cafe9d884483e (patch)
treedb6b3ca2e84270cf1c310d1517b788f41b41eaa8
parentd963aff7f6977e50517fb2ffe8b31f1db142107d (diff)
downloadat-spi2-core-d1e2d39b5a936f71595a2b9b372cafe9d884483e.tar.gz
meson: fix a typo in a variable name
this made meson fail on Windows
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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']