From a153c78d6e8349ee76b787c119d3c7fdbc3f032c Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Wed, 1 Sep 2021 07:04:02 -0700 Subject: [PATCH] wgl: Move opengl32.def to target instead of frontend Reviewed By: Bill Kristiansen Reviewed-by: Charmaine Lee >charmainel@vmware.com> Part-of: --- src/gallium/targets/libgl-gdi/meson.build | 2 +- src/gallium/{frontends/wgl => targets/libgl-gdi}/opengl32.def | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/gallium/{frontends/wgl => targets/libgl-gdi}/opengl32.def (100%) diff --git a/src/gallium/targets/libgl-gdi/meson.build b/src/gallium/targets/libgl-gdi/meson.build index 41eb84e5544..734bbe5786c 100644 --- a/src/gallium/targets/libgl-gdi/meson.build +++ b/src/gallium/targets/libgl-gdi/meson.build @@ -24,7 +24,7 @@ if cc.get_id() == 'gcc' and host_machine.cpu_family() != 'x86_64' opengl32_link_args += ['-Wl,--enable-stdcall-fixup'] endif -ogldef = files('../../frontends/wgl/opengl32.def')[0] +ogldef = files('opengl32.def')[0] libopengl32 = shared_library( 'opengl32', diff --git a/src/gallium/frontends/wgl/opengl32.def b/src/gallium/targets/libgl-gdi/opengl32.def similarity index 100% rename from src/gallium/frontends/wgl/opengl32.def rename to src/gallium/targets/libgl-gdi/opengl32.def