From 0d3d31c3e75ed1a31a206023bc2484aa665ad7cc Mon Sep 17 00:00:00 2001 From: Carl Zhang Date: Wed, 3 Apr 2024 15:59:10 +0800 Subject: [PATCH] remove va_trace.h from installation list just keep it internal for compilation Fixes #803 Signed-off-by: Carl Zhang --- va/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/va/meson.build b/va/meson.build index e15f8fe3e..84f5a32a4 100644 --- a/va/meson.build +++ b/va/meson.build @@ -155,7 +155,7 @@ if WITH_X11 'x11/va_dricommon.h', ] - libva_x11_headers = ['va_x11.h'] + libva_dri_headers + ['va_trace.h'] + libva_x11_headers = ['va_x11.h'] + libva_dri_headers libva_headers_subproject += libva_dri_headers @@ -165,6 +165,7 @@ if WITH_X11 'x11/va_dri3.h', 'x11/va_fglrx.h', 'x11/va_nvctrl.h', + 'va_trace.h', ] install_headers(libva_x11_headers, subdir : 'va')