diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-12 16:14:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 16:14:18 -0500 |
commit | 77dfac4fa4082ce95fc9769861e0b971754b6a66 (patch) | |
tree | cfffb364f9e79dc7acb2dc67075b33f15a1f57c9 /xwayland/meson.build | |
parent | d2d8372cdc20c908342497fcdbfa91b6fc99df82 (diff) | |
parent | 51bfdd620e70c41e1a9fb4ce7831eddfb1bf893b (diff) |
Merge pull request #1372 from emersion/config10
Use #if instead of #ifdef for wlroots config data
Diffstat (limited to 'xwayland/meson.build')
-rw-r--r-- | xwayland/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xwayland/meson.build b/xwayland/meson.build index 0bd88924..e5f9b9be 100644 --- a/xwayland/meson.build +++ b/xwayland/meson.build @@ -23,7 +23,7 @@ foreach lib : xwayland_optional dep = dependency(lib, required: get_option(lib)) if dep.found() xwayland_libs += dep - conf_data.set('WLR_HAS_' + lib.underscorify().to_upper(), true) + conf_data.set10('WLR_HAS_' + lib.underscorify().to_upper(), true) endif endforeach @@ -48,4 +48,4 @@ lib_wlr_xwayland = static_library( ) wlr_parts += lib_wlr_xwayland -conf_data.set('WLR_HAS_XWAYLAND', true) +conf_data.set10('WLR_HAS_XWAYLAND', true) |