summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-12-13 12:35:22 +0000
committerRoss Burton <ross.burton@intel.com>2020-02-25 16:28:10 +0000
commit032909626b4b4757a4ad10823b199157538a58e9 (patch)
treeba7af3d83f46813c2c97fc1837e5a606b0c813b0 /include
parentf61f9a3ee1aa77ebcc67730cda9bfde88e4e9c5f (diff)
meson: mark more extensions as legacy
The Meson and Autotools builds disagree about what extensions are legacy. This patch makes the Meson build identical to autotools. Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/X11/extensions/meson.build18
-rw-r--r--include/X11/meson.build4
2 files changed, 12 insertions, 10 deletions
diff --git a/include/X11/extensions/meson.build b/include/X11/extensions/meson.build
index 1d85cf8..d1ac281 100644
--- a/include/X11/extensions/meson.build
+++ b/include/X11/extensions/meson.build
@@ -65,8 +65,6 @@ install_headers(
'xf86dga.h',
'xf86dgaproto.h',
'xf86dgastr.h',
- 'xf86misc.h',
- 'xf86mscstr.h',
'xf86vm.h',
'xf86vmproto.h',
'xf86vmstr.h',
@@ -85,13 +83,6 @@ install_headers(
'xtestext1const.h',
'xtestext1proto.h',
'xtestproto.h',
- 'xtrapbits.h',
- 'xtrapddmi.h',
- 'xtrapdi.h',
- 'xtrapemacros.h',
- 'xtraplib.h',
- 'xtraplibp.h',
- 'xtrapproto.h',
'Xv.h',
'XvMC.h',
'XvMCproto.h',
@@ -113,7 +104,16 @@ if get_option('legacy') == true
'windowswmstr.h',
'xcalibrateproto.h',
'xcalibratewire.h',
+ 'xtrapbits.h',
+ 'xtrapddmi.h',
+ 'xtrapdi.h',
+ 'xtrapemacros.h',
+ 'xtraplib.h',
+ 'xtraplibp.h',
+ 'xtrapproto.h',
'Xeviestr.h',
+ 'xf86misc.h',
+ 'xf86mscstr.h',
'xf86rush.h',
'xf86rushstr.h',
'XKBgeom.h',
diff --git a/include/X11/meson.build b/include/X11/meson.build
index 1c33c64..a4b022e 100644
--- a/include/X11/meson.build
+++ b/include/X11/meson.build
@@ -59,4 +59,6 @@ install_headers(
subdir('dri')
subdir('extensions')
subdir('fonts')
-subdir('PM')
+if get_option('legacy') == true
+ subdir('PM')
+endif