From 5fedacb29c660b2741717a77e15e9b5440c29210 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 15 Oct 2024 20:00:10 +0200 Subject: [PATCH] xfree86: move xf86Cursor.h to ./common This is a public include file (used by drivers). It's tidier to collect those under one common directory. Since we already have most of them under hw/xfree86/common, this seems to be the right place for it. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/meson.build | 1 + hw/xfree86/{ramdac => common}/xf86Cursor.h | 0 hw/xfree86/ramdac/meson.build | 7 ------- 3 files changed, 1 insertion(+), 7 deletions(-) rename hw/xfree86/{ramdac => common}/xf86Cursor.h (100%) diff --git a/hw/xfree86/common/meson.build b/hw/xfree86/common/meson.build index 7dc19c6f9..893593ae1 100644 --- a/hw/xfree86/common/meson.build +++ b/hw/xfree86/common/meson.build @@ -27,6 +27,7 @@ srcs_xorg_common = [ xorg_sdk_headers = [ 'compiler.h', 'xf86.h', + 'xf86Cursor.h', 'xf86Module.h', 'xf86Opt.h', 'xf86PciInfo.h', diff --git a/hw/xfree86/ramdac/xf86Cursor.h b/hw/xfree86/common/xf86Cursor.h similarity index 100% rename from hw/xfree86/ramdac/xf86Cursor.h rename to hw/xfree86/common/xf86Cursor.h diff --git a/hw/xfree86/ramdac/meson.build b/hw/xfree86/ramdac/meson.build index 0a2bb4b79..ae23f918b 100644 --- a/hw/xfree86/ramdac/meson.build +++ b/hw/xfree86/ramdac/meson.build @@ -9,10 +9,3 @@ xorg_ramdac = static_library('xorg_ramdac', dependencies: common_dep, c_args: xorg_c_args, ) - -install_data( - [ - 'xf86Cursor.h', - ], - install_dir: xorgsdkdir, -)