aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2018-03-03 17:03:19 +0100
committerDominique Martinet <asmadeus@codewreck.org>2018-03-03 17:03:21 +0100
commit7d1870c6f1c1dd14fe9fe13885021970f0cbdbe8 (patch)
tree913f3a92d12eac96d70a8ae44978cadf15d9919f /meson.build
parentf4817916697c10f9361d0e78aa6d7979db5c850a (diff)
move xwm.h out of include/wlr
xwm.h was meant to be private, so move it to include/xwayland/xwm.h We had an ifdef WLR_HAS_XCB_ICCCM in xwayland.h which was easy to move to xwm, it is not safe to use the WLR_HAS_* in the public headers. I checked a few of our current users and none rely on xwm.h being public as expected (rootston, sway, hsroots)
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build1
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 1188f318..553d2b88 100644
--- a/meson.build
+++ b/meson.build
@@ -103,7 +103,6 @@ if get_option('enable_xwayland')
conf_data.set('WLR_HAS_XWAYLAND', true)
else
exclude_headers += 'xwayland.h'
- exclude_headers += 'xwm.h'
endif
exclude_headers += 'meson.build'
install_subdir('include/wlr', install_dir: 'include', exclude_files: exclude_headers)