summaryrefslogtreecommitdiff
path: root/glx
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2021-03-05 22:50:51 +0000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-03-11 00:22:36 +0000
commit376eaadde36f80fcbe6b0391a3385e77b4602854 (patch)
treebdaeb7480122904d2a2a7af1de059abf4306d273 /glx
parent4ae36f418ed683532b0b6991e4a1e7d56740b845 (diff)
meson: hide C API if Xorg is disabled (like autotools)
When building only Xwayland using Meson some files are always installed. This causes package conflict if Xwayland is built separately from Xorg. include/xorg/compositeext.h include/xorg/damage.h include/xorg/damagestr.h include/xorg/dbestruct.h include/xorg/dri3.h include/xorg/fb.h include/xorg/fboverlay.h include/xorg/fbpict.h include/xorg/fbrop.h include/xorg/geext.h include/xorg/geint.h include/xorg/glyphstr.h include/xorg/mi.h include/xorg/micmap.h include/xorg/micoord.h include/xorg/migc.h include/xorg/miline.h include/xorg/mioverlay.h include/xorg/mipict.h include/xorg/mipointer.h include/xorg/mipointrst.h include/xorg/mistruct.h include/xorg/misync.h include/xorg/misyncfd.h include/xorg/misyncshm.h include/xorg/misyncstr.h include/xorg/mizerarc.h include/xorg/panoramiX.h include/xorg/panoramiXsrv.h include/xorg/picture.h include/xorg/picturestr.h include/xorg/present.h include/xorg/presentext.h include/xorg/randrstr.h include/xorg/rrtransform.h include/xorg/shadow.h include/xorg/shmint.h include/xorg/syncsdk.h include/xorg/vndserver.h include/xorg/wfbrename.h include/xorg/xace.h include/xorg/xacestr.h include/xorg/xorg-server.h include/xorg/xvdix.h include/xorg/xvmcext.h share/aclocal/xorg-server.m4 Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
Diffstat (limited to 'glx')
-rw-r--r--glx/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/glx/meson.build b/glx/meson.build
index 292e7a59d..2ec00ce22 100644
--- a/glx/meson.build
+++ b/glx/meson.build
@@ -79,5 +79,7 @@ if build_glx
],
)
- install_data(hdrs_vnd, install_dir : xorgsdkdir)
+ if build_xorg
+ install_data(hdrs_vnd, install_dir : xorgsdkdir)
+ endif
endif