From ab38f0c79a3ddea86349a966c96be83597b49a90 Mon Sep 17 00:00:00 2001 From: Michael Cronenworth Date: Thu, 13 May 2021 18:23:13 -0500 Subject: [PATCH] Update to 6.8 - massive directory layout change --- .gitignore | 6 +- sources | 6 +- wine-6.0-vulkan-child-window.patch | 146 -- wine.spec | 2249 ++++++++++++++-------------- 4 files changed, 1170 insertions(+), 1237 deletions(-) delete mode 100644 wine-6.0-vulkan-child-window.patch diff --git a/.gitignore b/.gitignore index f83a12f..85bcc12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -/wine-6.7.tar.xz -/wine-6.7.tar.xz.sign -/wine-staging-6.7.tar.gz +/wine-6.8.tar.xz +/wine-6.8.tar.xz.sign +/wine-staging-6.8.tar.gz diff --git a/sources b/sources index e9c2247..6f65669 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ -SHA512 (wine-6.7.tar.xz) = 42920921eaff5a483859fba2b9e866c6afad25427d030f971efe2136f9619b675d5eb1ddfffd54bba8caa172c3e91eb347d673cb16f45560f0ab40a184a34758 -SHA512 (wine-6.7.tar.xz.sign) = 8993ec90439d15bc1ca500b847c1c832ec1334a267b2694d200a92c7dc7812c04dfd5fc28831b7bb5878d07c7c74a27c67565ebe8c13bc5b09182564045262cd -SHA512 (wine-staging-6.7.tar.gz) = 74805846e2e6e5d751c25f4b98ac671f8507d3a9b13d572e166b1885e397a6bb74bd3ea4b456d46298306d632499a4b88f97eb6d53ff049c2495cf055347611d +SHA512 (wine-6.8.tar.xz) = 784863e3aa11f692cee2ab3b3d99cc896c1eb41cfab8cc6b52b5a31671d82fc7f6783bae72c65d8806a8c4096000401cbd0a1a7f1a88fd980685fae67fa9bd91 +SHA512 (wine-6.8.tar.xz.sign) = bb82528de58fc69768e6d647ceee2f21c37cac5281f30754666f5ecd13fea15b605e005dc47105cf49fa7d1e3b0ac8e807eda319c378de09eeb122960665a8f7 +SHA512 (wine-staging-6.8.tar.gz) = a2dfe74b07b687af147b61f235ea2843ff38a563f37ed2ed68dce1cc0ff3d50dbd7c9596836c6e236e368e7a55cbe1ba881dac11bb0966e61a76a7376f92bdcc diff --git a/wine-6.0-vulkan-child-window.patch b/wine-6.0-vulkan-child-window.patch deleted file mode 100644 index a93ac52..0000000 --- a/wine-6.0-vulkan-child-window.patch +++ /dev/null @@ -1,146 +0,0 @@ -From 4cc738f609faff68bf4c67d5618174fa87ab3cdb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Felix=20H=C3=A4dicke?= -Date: Wed, 10 Jul 2019 22:19:31 +0200 -Subject: [PATCH] winex11.drv: Support child window rendering for Vulkan via - XComposite -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45277 -Signed-off-by: Felix Hädicke ---- - dlls/winex11.drv/vulkan.c | 56 ++++++++++++++++++++++++++++++++------- - 1 file changed, 47 insertions(+), 9 deletions(-) - -diff --git a/dlls/winex11.drv/vulkan.c b/dlls/winex11.drv/vulkan.c -index 28ae1a9e0e8..3b0bf58c107 100644 ---- a/dlls/winex11.drv/vulkan.c -+++ b/dlls/winex11.drv/vulkan.c -@@ -33,6 +33,7 @@ - #include "wine/debug.h" - #include "wine/heap.h" - #include "x11drv.h" -+#include "xcomposite.h" - - #define VK_NO_PROTOTYPES - #define WINE_VK_HOST -@@ -55,6 +56,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug = - static CRITICAL_SECTION context_section = { &critsect_debug, -1, 0, 0, 0, 0 }; - - static XContext vulkan_hwnd_context; -+static XContext vulkan_swapchain_surface_context; - - #define VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR 1000004000 - -@@ -62,6 +64,7 @@ struct wine_vk_surface - { - LONG ref; - Window window; -+ HDC child_window_dc; - VkSurfaceKHR surface; /* native surface */ - }; - -@@ -135,6 +138,7 @@ static BOOL WINAPI wine_vk_init(INIT_ONCE *once, void *param, void **context) - #undef LOAD_OPTIONAL_FUNCPTR - - vulkan_hwnd_context = XUniqueContext(); -+ vulkan_swapchain_surface_context = XUniqueContext(); - - return TRUE; - -@@ -252,16 +256,24 @@ static VkResult X11DRV_vkCreateSwapchainKHR(VkDevice device, - const VkSwapchainCreateInfoKHR *create_info, - const VkAllocationCallbacks *allocator, VkSwapchainKHR *swapchain) - { -+ VkResult res; - VkSwapchainCreateInfoKHR create_info_host; -+ struct wine_vk_surface *x11_surface = surface_from_handle(create_info->surface); -+ - TRACE("%p %p %p %p\n", device, create_info, allocator, swapchain); - - if (allocator) - FIXME("Support for allocation callbacks not implemented yet\n"); - - create_info_host = *create_info; -- create_info_host.surface = surface_from_handle(create_info->surface)->surface; -+ create_info_host.surface = x11_surface->surface; - -- return pvkCreateSwapchainKHR(device, &create_info_host, NULL /* allocator */, swapchain); -+ res = pvkCreateSwapchainKHR(device, &create_info_host, NULL /* allocator */, swapchain); -+ if (res == VK_SUCCESS) -+ { -+ XSaveContext(gdi_display, (XID)(*swapchain), vulkan_swapchain_surface_context, (char *)x11_surface); -+ } -+ return res; - } - - static VkResult X11DRV_vkCreateWin32SurfaceKHR(VkInstance instance, -@@ -277,13 +289,6 @@ static VkResult X11DRV_vkCreateWin32SurfaceKHR(VkInstance instance, - if (allocator) - FIXME("Support for allocation callbacks not implemented yet\n"); - -- /* TODO: support child window rendering. */ -- if (GetAncestor(create_info->hwnd, GA_PARENT) != GetDesktopWindow()) -- { -- FIXME("Application requires child window rendering, which is not implemented yet!\n"); -- return VK_ERROR_INCOMPATIBLE_DRIVER; -- } -- - x11_surface = heap_alloc_zero(sizeof(*x11_surface)); - if (!x11_surface) - return VK_ERROR_OUT_OF_HOST_MEMORY; -@@ -300,6 +305,23 @@ static VkResult X11DRV_vkCreateWin32SurfaceKHR(VkInstance instance, - goto err; - } - -+ /* child window rendering. */ -+ if (GetAncestor(create_info->hwnd, GA_PARENT) != GetDesktopWindow()) -+ { -+#ifdef SONAME_LIBXCOMPOSITE -+ if (usexcomposite) -+ { -+ pXCompositeRedirectWindow(gdi_display, x11_surface->window, CompositeRedirectManual); -+ x11_surface->child_window_dc = GetDC(create_info->hwnd); -+ } -+ else -+#endif -+ { -+ FIXME("Child window rendering is not supported without X Composite Extension!\n"); -+ return VK_ERROR_INCOMPATIBLE_DRIVER; -+ } -+ } -+ - create_info_host.sType = VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR; - create_info_host.pNext = NULL; - create_info_host.flags = 0; /* reserved */ -@@ -369,6 +391,7 @@ static void X11DRV_vkDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapcha - FIXME("Support for allocation callbacks not implemented yet\n"); - - pvkDestroySwapchainKHR(device, swapchain, NULL /* allocator */); -+ XDeleteContext(gdi_display, (XID)swapchain, vulkan_swapchain_surface_context); - } - - static VkResult X11DRV_vkEnumerateInstanceExtensionProperties(const char *layer_name, -@@ -541,6 +564,21 @@ static VkResult X11DRV_vkQueuePresentKHR(VkQueue queue, const VkPresentInfoKHR * - } - } - -+ for (uint32_t i = 0 ; i < present_info->swapchainCount; ++i) -+ { -+ struct wine_vk_surface *x11_surface; -+ if (!XFindContext(gdi_display, (XID)present_info->pSwapchains[i], -+ vulkan_swapchain_surface_context, (char **)&x11_surface) && -+ x11_surface->child_window_dc) -+ { -+ struct x11drv_escape_flush_gl_drawable escape; -+ escape.code = X11DRV_FLUSH_GL_DRAWABLE; -+ escape.gl_drawable = x11_surface->window; -+ escape.flush = TRUE; -+ ExtEscape(x11_surface->child_window_dc, X11DRV_ESCAPE, sizeof(escape), (LPSTR)&escape, 0, NULL); -+ } -+ } -+ - return res; - } - diff --git a/wine.spec b/wine.spec index 786b570..bdf2811 100644 --- a/wine.spec +++ b/wine.spec @@ -12,6 +12,7 @@ %global winecpl cpl %global winedll dll %global winedrv drv +%global wineds ds %global wineexe exe %global wineocx ocx %global winesys sys @@ -23,11 +24,28 @@ %global winecpl cpl.so %global winedll dll.so %global winedrv drv.so +%global wineds ds.so %global wineexe exe.so %global wineocx ocx.so %global winesys sys.so %global winetlb tlb.so %endif +%ifarch %{ix86} +%global winepedir i386-windows +%global winesodir i386-unix +%endif +%ifarch x86_64 +%global winepedir x86_64-windows +%global winesodir x86_64-unix +%endif +%ifarch %{arm} +%global winepedir arm-windows +%global winesodir arm-unix +%endif +%ifarch aarch64 +%global winepedir aarch64-windows +%global winesodir aarch64-unix +%endif # build with wine-staging patches, see: https://github.com/wine-staging/wine-staging %if 0%{?fedora} @@ -44,7 +62,7 @@ %endif Name: wine -Version: 6.7 +Version: 6.8 Release: 1%{?dist} Summary: A compatibility layer for windows applications @@ -75,8 +93,6 @@ Source109: wine-oleview.desktop Source150: wine.appdata.xml # wine bugs -# https://bugs.winehq.org/show_bug.cgi?id=45277 -Patch100: wine-6.0-vulkan-child-window.patch # desktop dir Source200: wine.menu @@ -715,16 +731,11 @@ This package adds the opencl driver for wine. # setup and apply wine-staging patches gzip -dc %{SOURCE900} | tar -xf - --strip-components=1 -# Fix staging patch -sed -i -e 's!+ return status;!+ return;!' patches/user32-rawinput-hid/0017-hidclass.sys-Assign-rawinput-handles-through-device-.patch - patches/patchinstall.sh DESTDIR="`pwd`" --all # fix parallelized build sed -i -e 's!^loader server: libs/port libs/wine tools.*!& include!' Makefile.in -%patch100 -p1 -b.vulkan-child-window - %endif # 0%%{?wine_staging} @@ -799,18 +810,20 @@ touch %{buildroot}%{_bindir}/wine touch %{buildroot}%{_bindir}/wine-preloader %endif touch %{buildroot}%{_bindir}/wineserver -mv %{buildroot}%{_libdir}/wine/dxgi.dll.so %{buildroot}%{_libdir}/wine/wine-dxgi.dll.so -mv %{buildroot}%{_libdir}/wine/d3d9.%{winedll} %{buildroot}%{_libdir}/wine/wine-d3d9.%{winedll} -mv %{buildroot}%{_libdir}/wine/d3d10.%{winedll} %{buildroot}%{_libdir}/wine/wine-d3d10.%{winedll} -mv %{buildroot}%{_libdir}/wine/d3d10_1.%{winedll} %{buildroot}%{_libdir}/wine/wine-d3d10_1.%{winedll} -mv %{buildroot}%{_libdir}/wine/d3d10core.%{winedll} %{buildroot}%{_libdir}/wine/wine-d3d10core.%{winedll} -mv %{buildroot}%{_libdir}/wine/d3d11.%{winedll} %{buildroot}%{_libdir}/wine/wine-d3d11.%{winedll} -touch %{buildroot}%{_libdir}/wine/dxgi.dll.so -touch %{buildroot}%{_libdir}/wine/d3d9.%{winedll} -touch %{buildroot}%{_libdir}/wine/d3d10.%{winedll} -touch %{buildroot}%{_libdir}/wine/d3d10_1.%{winedll} -touch %{buildroot}%{_libdir}/wine/d3d10core.%{winedll} -touch %{buildroot}%{_libdir}/wine/d3d11.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winepedir}/dxgi.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-dxgi.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winesodir}/dxgi.dll.so %{buildroot}%{_libdir}/wine/%{winesodir}/wine-dxgi.dll.so +mv %{buildroot}%{_libdir}/wine/%{winepedir}/d3d9.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-d3d9.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-d3d10.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10_1.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-d3d10_1.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10core.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-d3d10core.%{winedll} +mv %{buildroot}%{_libdir}/wine/%{winepedir}/d3d11.%{winedll} %{buildroot}%{_libdir}/wine/%{winepedir}/wine-d3d11.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winepedir}/dxgi.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winesodir}/dxgi.dll.so +touch %{buildroot}%{_libdir}/wine/%{winepedir}/d3d9.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10_1.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winepedir}/d3d10core.%{winedll} +touch %{buildroot}%{_libdir}/wine/%{winepedir}/d3d11.%{winedll} # remove rpath chrpath --delete %{buildroot}%{_bindir}/wmc @@ -1056,12 +1069,10 @@ fi %posttrans core # handle upgrades for a few package updates -rm -f %{_libdir}/wine/dxgi.dll.so -rm -f %{_libdir}/wine/d3d9.%{winedll} -rm -f %{_libdir}/wine/d3d10.%{winedll} -rm -f %{_libdir}/wine/d3d10_1.%{winedll} -rm -f %{_libdir}/wine/d3d10core.%{winedll} -rm -f %{_libdir}/wine/d3d11.%{winedll} +%{_sbindir}/alternatives --remove 'wine-dxgi%{?_isa}' %{_libdir}/wine/wine-dxgi.dll.so +%{_sbindir}/alternatives --remove 'wine-d3d9%{?_isa}' %{_libdir}/wine/wine-d3d9.%{winedll} +%{_sbindir}/alternatives --remove 'wine-d3d10%{?_isa}' %{_libdir}/wine/wine-d3d10.%{winedll} +%{_sbindir}/alternatives --remove 'wine-d3d11%{?_isa}' %{_libdir}/wine/wine-d3d11.%{winedll} %ifarch x86_64 aarch64 %{_sbindir}/alternatives --install %{_bindir}/wine \ wine %{_bindir}/wine64 10 \ @@ -1082,31 +1093,32 @@ rm -f %{_libdir}/wine/d3d11.%{winedll} wineserver %{_bindir}/wineserver32 10 %endif %endif -%{_sbindir}/alternatives --install %{_libdir}/wine/dxgi.dll.so \ - 'wine-dxgi%{?_isa}' %{_libdir}/wine/wine-dxgi.dll.so 10 -%{_sbindir}/alternatives --install %{_libdir}/wine/d3d9.%{winedll} \ - 'wine-d3d9%{?_isa}' %{_libdir}/wine/wine-d3d9.%{winedll} 10 -%{_sbindir}/alternatives --install %{_libdir}/wine/d3d10.%{winedll} \ - 'wine-d3d10%{?_isa}' %{_libdir}/wine/wine-d3d10.%{winedll} 10 \ - --slave %{_libdir}/wine/d3d10_1.%{winedll} 'wine-d3d10_1%{?_isa}' %{_libdir}/wine/wine-d3d10_1.%{winedll} \ - --slave %{_libdir}/wine/d3d10core.%{winedll} 'wine-d3d10core%{?_isa}' %{_libdir}/wine/wine-d3d10core.%{winedll} -%{_sbindir}/alternatives --install %{_libdir}/wine/d3d11.%{winedll} \ - 'wine-d3d11%{?_isa}' %{_libdir}/wine/wine-d3d11.%{winedll} 10 +%{_sbindir}/alternatives --install %{_libdir}/wine/%{winepedir}/dxgi.%{winedll} \ + 'wine-dxgi%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-dxgi.%{winedll} 10 \ + --slave %{_libdir}/wine/%{winesodir}/dxgi.dll.so 'wine-dxgi-so%{?_isa}' %{_libdir}/wine/%{winesodir}/wine-dxgi.dll.so +%{_sbindir}/alternatives --install %{_libdir}/wine/%{winepedir}/d3d9.%{winedll} \ + 'wine-d3d9%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d9.%{winedll} 10 +%{_sbindir}/alternatives --install %{_libdir}/wine/%{winepedir}/d3d10.%{winedll} \ + 'wine-d3d10%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d10.%{winedll} 10 \ + --slave %{_libdir}/wine/%{winepedir}/d3d10_1.%{winedll} 'wine-d3d10_1%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d10_1.%{winedll} \ + --slave %{_libdir}/wine/%{winepedir}/d3d10core.%{winedll} 'wine-d3d10core%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d10core.%{winedll} +%{_sbindir}/alternatives --install %{_libdir}/wine/%{winepedir}/d3d11.%{winedll} \ + 'wine-d3d11%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d11.%{winedll} 10 %postun core %{?ldconfig} if [ $1 -eq 0 ] ; then -%ifarch x86_64 aarch64 aarch64 +%ifarch x86_64 aarch64 %{_sbindir}/alternatives --remove wine %{_bindir}/wine64 %{_sbindir}/alternatives --remove wineserver %{_bindir}/wineserver64 %else %{_sbindir}/alternatives --remove wine %{_bindir}/wine32 %{_sbindir}/alternatives --remove wineserver %{_bindir}/wineserver32 %endif - %{_sbindir}/alternatives --remove 'wine-dxgi%{?_isa}' %{_libdir}/wine/wine-dxgi.dll.so - %{_sbindir}/alternatives --remove 'wine-d3d9%{?_isa}' %{_libdir}/wine/wine-d3d9.%{winedll} - %{_sbindir}/alternatives --remove 'wine-d3d10%{?_isa}' %{_libdir}/wine/wine-d3d10.%{winedll} - %{_sbindir}/alternatives --remove 'wine-d3d11%{?_isa}' %{_libdir}/wine/wine-d3d11.%{winedll} + %{_sbindir}/alternatives --remove 'wine-dxgi%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-dxgi.%{winedll} + %{_sbindir}/alternatives --remove 'wine-d3d9%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d9.%{winedll} + %{_sbindir}/alternatives --remove 'wine-d3d10%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d10.%{winedll} + %{_sbindir}/alternatives --remove 'wine-d3d11%{?_isa}' %{_libdir}/wine/%{winepedir}/wine-d3d11.%{winedll} fi %ldconfig_scriptlets ldap @@ -1141,25 +1153,26 @@ fi %{_bindir}/msidb %endif %{_bindir}/winedump -%{_libdir}/wine/explorer.%{wineexe} -%{_libdir}/wine/cabarc.%{wineexe} -%{_libdir}/wine/control.%{wineexe} -%{_libdir}/wine/cmd.%{wineexe} -%{_libdir}/wine/dxdiag.%{wineexe} -%{_libdir}/wine/notepad.%{wineexe} -%{_libdir}/wine/plugplay.%{wineexe} -%{_libdir}/wine/progman.%{wineexe} -%{_libdir}/wine/taskmgr.%{wineexe} -%{_libdir}/wine/winedbg.exe.so -%{_libdir}/wine/winefile.%{wineexe} -%{_libdir}/wine/winemine.%{wineexe} -%{_libdir}/wine/winemsibuilder.%{wineexe} -%{_libdir}/wine/winepath.%{wineexe} -%{_libdir}/wine/winmgmt.%{wineexe} -%{_libdir}/wine/winver.%{wineexe} -%{_libdir}/wine/wordpad.%{wineexe} -%{_libdir}/wine/write.%{wineexe} -%{_libdir}/wine/wusa.%{wineexe} +%{_libdir}/wine/%{winepedir}/explorer.%{wineexe} +%{_libdir}/wine/%{winepedir}/cabarc.%{wineexe} +%{_libdir}/wine/%{winepedir}/control.%{wineexe} +%{_libdir}/wine/%{winepedir}/cmd.%{wineexe} +%{_libdir}/wine/%{winepedir}/dxdiag.%{wineexe} +%{_libdir}/wine/%{winepedir}/notepad.%{wineexe} +%{_libdir}/wine/%{winepedir}/plugplay.%{wineexe} +%{_libdir}/wine/%{winepedir}/progman.%{wineexe} +%{_libdir}/wine/%{winepedir}/taskmgr.%{wineexe} +%{_libdir}/wine/%{winepedir}/winedbg.%{wineexe} +%{_libdir}/wine/%{winesodir}/winedbg.exe.so +%{_libdir}/wine/%{winepedir}/winefile.%{wineexe} +%{_libdir}/wine/%{winepedir}/winemine.%{wineexe} +%{_libdir}/wine/%{winepedir}/winemsibuilder.%{wineexe} +%{_libdir}/wine/%{winepedir}/winepath.%{wineexe} +%{_libdir}/wine/%{winepedir}/winmgmt.%{wineexe} +%{_libdir}/wine/%{winepedir}/winver.%{wineexe} +%{_libdir}/wine/%{winepedir}/wordpad.%{wineexe} +%{_libdir}/wine/%{winepedir}/write.%{wineexe} +%{_libdir}/wine/%{winepedir}/wusa.%{wineexe} %ifarch %{ix86} %{arm} %{_bindir}/wine32 @@ -1186,1039 +1199,1096 @@ fi %ghost %{_bindir}/wineserver %dir %{_libdir}/wine -%dir %{_libdir}/wine/fakedlls -%{_libdir}/wine/fakedlls/* - -%{_libdir}/wine/attrib.%{wineexe} -%{_libdir}/wine/arp.%{wineexe} -%{_libdir}/wine/aspnet_regiis.%{wineexe} -%{_libdir}/wine/cacls.%{wineexe} -%{_libdir}/wine/conhost.%{wineexe} -%{_libdir}/wine/cscript.%{wineexe} -%{_libdir}/wine/dism.%{wineexe} -%{_libdir}/wine/dplaysvr.%{wineexe} -%{_libdir}/wine/dpnsvr.%{wineexe} -%{_libdir}/wine/dpvsetup.%{wineexe} -%{_libdir}/wine/eject.%{wineexe} -%{_libdir}/wine/expand.%{wineexe} -%{_libdir}/wine/extrac32.%{wineexe} -%{_libdir}/wine/fc.%{wineexe} -%{_libdir}/wine/find.%{wineexe} -%{_libdir}/wine/findstr.%{wineexe} -%{_libdir}/wine/fsutil.%{wineexe} -%{_libdir}/wine/hostname.%{wineexe} -%{_libdir}/wine/ipconfig.%{wineexe} -%{_libdir}/wine/winhlp32.%{wineexe} -%{_libdir}/wine/mshta.%{wineexe} -%if 0%{?wine_staging} -%{_libdir}/wine/msidb.%{wineexe} -%endif -%{_libdir}/wine/msiexec.%{wineexe} -%{_libdir}/wine/net.%{wineexe} -%{_libdir}/wine/netstat.%{wineexe} -%{_libdir}/wine/ngen.%{wineexe} -%{_libdir}/wine/ntoskrnl.%{wineexe} -%{_libdir}/wine/oleview.%{wineexe} -%{_libdir}/wine/ping.%{wineexe} -%{_libdir}/wine/powershell.%{wineexe} -%{_libdir}/wine/reg.%{wineexe} -%{_libdir}/wine/regasm.%{wineexe} -%{_libdir}/wine/regedit.%{wineexe} -%{_libdir}/wine/regsvcs.%{wineexe} -%{_libdir}/wine/regsvr32.%{wineexe} -%{_libdir}/wine/rpcss.%{wineexe} -%{_libdir}/wine/rundll32.%{wineexe} -%{_libdir}/wine/schtasks.%{wineexe} -%{_libdir}/wine/sdbinst.%{wineexe} -%{_libdir}/wine/secedit.%{wineexe} -%{_libdir}/wine/servicemodelreg.%{wineexe} -%{_libdir}/wine/services.%{wineexe} -%{_libdir}/wine/start.%{wineexe} -%{_libdir}/wine/tasklist.%{wineexe} -%{_libdir}/wine/termsv.%{wineexe} -%{_libdir}/wine/view.%{wineexe} -%{_libdir}/wine/wevtutil.%{wineexe} -%{_libdir}/wine/where.%{wineexe} -%{_libdir}/wine/whoami.%{wineexe} -%{_libdir}/wine/wineboot.%{wineexe} -%{_libdir}/wine/winebrowser.exe.so -%{_libdir}/wine/wineconsole.%{wineexe} -%{_libdir}/wine/winemenubuilder.exe.so -%{_libdir}/wine/winecfg.exe.so -%{_libdir}/wine/winedevice.%{wineexe} -%{_libdir}/wine/wmplayer.%{wineexe} -%{_libdir}/wine/wscript.%{wineexe} -%{_libdir}/wine/uninstaller.%{wineexe} - -%{_libdir}/libwine.so.1* - -%{_libdir}/wine/acledit.%{winedll} -%{_libdir}/wine/aclui.%{winedll} -%{_libdir}/wine/activeds.%{winedll} -%{_libdir}/wine/activeds.%{winetlb} -%{_libdir}/wine/actxprxy.%{winedll} -%{_libdir}/wine/adsldp.%{winedll} -%{_libdir}/wine/adsldpc.%{winedll} -%{_libdir}/wine/advapi32.%{winedll} -%{_libdir}/wine/advpack.%{winedll} -%{_libdir}/wine/amsi.%{winedll} -%{_libdir}/wine/amstream.%{winedll} -%{_libdir}/wine/api-ms-win-appmodel-identity-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-appmodel-runtime-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-appmodel-runtime-l1-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-apiquery-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-appcompat-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-appinit-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-atoms-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-bem-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-com-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-com-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-com-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-comm-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-console-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-console-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-crt-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-crt-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-datetime-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-datetime-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-debug-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-debug-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-delayload-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-delayload-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-errorhandling-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-errorhandling-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-errorhandling-l1-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-errorhandling-l1-1-3.%{winedll} -%{_libdir}/wine/api-ms-win-core-fibers-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-fibers-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l1-2-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l1-2-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l2-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-l2-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-ansi-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-file-fromapp-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-handle-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-heap-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-heap-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-heap-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-heap-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-interlocked-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-interlocked-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-io-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-io-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-job-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-job-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-largeinteger-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-kernel32-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-kernel32-legacy-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-kernel32-legacy-l1-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-kernel32-private-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l1-2-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l1-2-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-libraryloader-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-l1-2-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-l1-2-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-obsolete-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-obsolete-l1-3-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localization-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-localregistry-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-memory-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-memory-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-memory-l1-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-memory-l1-1-3.%{winedll} -%{_libdir}/wine/api-ms-win-core-memory-l1-1-4.%{winedll} -%{_libdir}/wine/api-ms-win-core-misc-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-namedpipe-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-namedpipe-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-namedpipe-ansi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-namespace-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-normalization-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-path-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-privateprofile-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-processenvironment-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-processenvironment-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-processthreads-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-processthreads-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-processthreads-l1-1-2.%{winedll} -%{_libdir}/wine/api-ms-win-core-processthreads-l1-1-3.%{winedll} -%{_libdir}/wine/api-ms-win-core-processtopology-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-profile-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-psapi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-psapi-ansi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-psapi-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-quirks-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-realtime-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-registry-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-registry-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-registry-l2-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-registryuserspecific-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-rtlsupport-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-rtlsupport-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-shlwapi-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-shlwapi-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-shutdown-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-sidebyside-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-string-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-string-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-string-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-stringansi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-stringloader-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-synch-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-synch-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-synch-l1-2-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-synch-ansi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-sysinfo-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-sysinfo-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-sysinfo-l1-2-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-systemtopology-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-threadpool-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-threadpool-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-threadpool-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-threadpool-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-timezone-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-toolhelp-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-url-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-util-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-version-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-version-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-version-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-versionansi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-windowserrorreporting-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-error-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-error-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-errorprivate-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-registration-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-roparameterizediid-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-string-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-winrt-string-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-wow64-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-wow64-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-core-xstate-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-core-xstate-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-conio-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-convert-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-environment-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-filesystem-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-heap-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-locale-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-math-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-multibyte-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-process-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-runtime-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-stdio-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-string-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-time-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-crt-utility-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-devices-config-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-devices-config-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-devices-query-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-advapi32-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-advapi32-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-kernel32-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-normaliz-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-ole32-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-shell32-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-shlwapi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-shlwapi-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-user32-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-downlevel-version-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-dx-d3dkmt-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventing-classicprovider-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventing-consumer-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventing-controller-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventing-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventing-provider-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-eventlog-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-gdi-dpiinfo-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-mm-joystick-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-mm-misc-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-mm-mme-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-mm-time-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-ntuser-dc-access-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-ntuser-rectangle-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-ntuser-sysparams-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-perf-legacy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-power-base-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-power-setting-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-private-l1-1-4.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-winevent-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.%{winedll} -%{_libdir}/wine/api-ms-win-security-activedirectoryclient-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-audit-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-security-base-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-base-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-base-private-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-security-credentials-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-cryptoapi-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-grouppolicy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-lsalookup-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-lsalookup-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-security-lsalookup-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-lsalookup-l2-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-security-lsapolicy-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-provider-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-sddl-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-security-systemfunctions-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-service-core-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-service-core-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-service-management-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-service-management-l2-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-service-private-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-service-winsvc-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-service-winsvc-l1-2-0.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-obsolete-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-scaling-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-scaling-l1-1-1.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-stream-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-stream-winrt-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shcore-thread-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shell-shellcom-l1-1-0.%{winedll} -%{_libdir}/wine/api-ms-win-shell-shellfolders-l1-1-0.%{winedll} -%{_libdir}/wine/apphelp.%{winedll} -%{_libdir}/wine/appwiz.%{winecpl} -%{_libdir}/wine/atl.%{winedll} -%{_libdir}/wine/atl80.%{winedll} -%{_libdir}/wine/atl90.%{winedll} -%{_libdir}/wine/atl100.%{winedll} -%{_libdir}/wine/atl110.%{winedll} -%{_libdir}/wine/atlthunk.%{winedll} -%{_libdir}/wine/atmlib.%{winedll} -%{_libdir}/wine/authz.%{winedll} -%{_libdir}/wine/avicap32.dll.so -%{_libdir}/wine/avifil32.%{winedll} -%{_libdir}/wine/avrt.%{winedll} -%{_libdir}/wine/bcrypt.so -%{_libdir}/wine/bcrypt.%{winedll} -%{_libdir}/wine/bluetoothapis.%{winedll} -%{_libdir}/wine/browseui.%{winedll} -%{_libdir}/wine/bthprops.%{winecpl} -%{_libdir}/wine/cabinet.%{winedll} -%{_libdir}/wine/cards.%{winedll} -%{_libdir}/wine/cdosys.%{winedll} -%{_libdir}/wine/cfgmgr32.%{winedll} -%{_libdir}/wine/chcp.%{winecom} -%{_libdir}/wine/clock.%{wineexe} -%{_libdir}/wine/clusapi.%{winedll} -%{_libdir}/wine/combase.%{winedll} -%{_libdir}/wine/comcat.%{winedll} -%{_libdir}/wine/comctl32.%{winedll} -%{_libdir}/wine/comdlg32.%{winedll} -%{_libdir}/wine/compstui.%{winedll} -%{_libdir}/wine/comsvcs.%{winedll} -%{_libdir}/wine/concrt140.%{winedll} -%{_libdir}/wine/connect.%{winedll} -%{_libdir}/wine/credui.%{winedll} -%{_libdir}/wine/crtdll.so -%{_libdir}/wine/crtdll.%{winedll} -%{_libdir}/wine/crypt32.so -%{_libdir}/wine/crypt32.%{winedll} -%{_libdir}/wine/cryptdlg.%{winedll} -%{_libdir}/wine/cryptdll.%{winedll} -%{_libdir}/wine/cryptext.%{winedll} -%{_libdir}/wine/cryptnet.%{winedll} -%{_libdir}/wine/cryptsp.%{winedll} -%{_libdir}/wine/cryptui.%{winedll} -%{_libdir}/wine/ctapi32.dll.so -%{_libdir}/wine/ctl3d32.%{winedll} -%{_libdir}/wine/d2d1.%{winedll} -%ghost %{_libdir}/wine/d3d10.%{winedll} -%ghost %{_libdir}/wine/d3d10_1.%{winedll} -%ghost %{_libdir}/wine/d3d10core.%{winedll} -%{_libdir}/wine/wine-d3d10.%{winedll} -%{_libdir}/wine/wine-d3d10_1.%{winedll} -%{_libdir}/wine/wine-d3d10core.%{winedll} -%ghost %{_libdir}/wine/d3d11.%{winedll} -%{_libdir}/wine/wine-d3d11.%{winedll} -%{_libdir}/wine/d3d12.dll.so -%{_libdir}/wine/d3dcompiler_*.%{winedll} -%{_libdir}/wine/d3dim.%{winedll} -%{_libdir}/wine/d3dim700.%{winedll} -%{_libdir}/wine/d3drm.%{winedll} -%{_libdir}/wine/d3dx9_*.%{winedll} -%{_libdir}/wine/d3dx10_*.%{winedll} -%{_libdir}/wine/d3dx11_42.%{winedll} -%{_libdir}/wine/d3dx11_43.%{winedll} -%{_libdir}/wine/d3dxof.%{winedll} -%{_libdir}/wine/davclnt.%{winedll} -%{_libdir}/wine/dbgeng.%{winedll} -%{_libdir}/wine/dbghelp.%{winedll} -%{_libdir}/wine/dciman32.%{winedll} -%{_libdir}/wine/dcomp.%{winedll} -%{_libdir}/wine/ddraw.%{winedll} -%{_libdir}/wine/ddrawex.%{winedll} -%{_libdir}/wine/devenum.%{winedll} -%{_libdir}/wine/dhcpcsvc.%{winedll} -%{_libdir}/wine/dhtmled.%{wineocx} -%{_libdir}/wine/difxapi.%{winedll} -%{_libdir}/wine/dinput.dll.so -%{_libdir}/wine/dinput8.dll.so -%{_libdir}/wine/directmanipulation.%{winedll} -%{_libdir}/wine/dispex.%{winedll} -%{_libdir}/wine/dmband.%{winedll} -%{_libdir}/wine/dmcompos.%{winedll} -%{_libdir}/wine/dmime.%{winedll} -%{_libdir}/wine/dmloader.%{winedll} -%{_libdir}/wine/dmscript.%{winedll} -%{_libdir}/wine/dmstyle.%{winedll} -%{_libdir}/wine/dmsynth.%{winedll} -%{_libdir}/wine/dmusic.%{winedll} -%{_libdir}/wine/dmusic32.%{winedll} -%{_libdir}/wine/dplay.%{winedll} -%{_libdir}/wine/dplayx.%{winedll} -%{_libdir}/wine/dpnaddr.%{winedll} -%{_libdir}/wine/dpnet.%{winedll} -%{_libdir}/wine/dpnhpast.%{winedll} -%{_libdir}/wine/dpnlobby.%{winedll} -%{_libdir}/wine/dpvoice.%{winedll} -%{_libdir}/wine/dpwsockx.%{winedll} -%{_libdir}/wine/drmclien.%{winedll} -%{_libdir}/wine/dsound.%{winedll} -%{_libdir}/wine/dsdmo.%{winedll} -%{_libdir}/wine/dsquery.%{winedll} -%{_libdir}/wine/dssenh.%{winedll} -%{_libdir}/wine/dsuiext.%{winedll} -%{_libdir}/wine/dswave.%{winedll} -%{_libdir}/wine/dwmapi.%{winedll} -%{_libdir}/wine/dwrite.%{winedll} -%{_libdir}/wine/dwrite.so -%{_libdir}/wine/dx8vb.%{winedll} -%{_libdir}/wine/dxdiagn.%{winedll} -%ghost %{_libdir}/wine/dxgi.dll.so -%{_libdir}/wine/wine-dxgi.dll.so + +%{_libdir}/wine/%{winepedir}/attrib.%{wineexe} +%{_libdir}/wine/%{winepedir}/arp.%{wineexe} +%{_libdir}/wine/%{winepedir}/aspnet_regiis.%{wineexe} +%{_libdir}/wine/%{winepedir}/cacls.%{wineexe} +%{_libdir}/wine/%{winepedir}/conhost.%{wineexe} +%{_libdir}/wine/%{winepedir}/cscript.%{wineexe} +%{_libdir}/wine/%{winepedir}/dism.%{wineexe} +%{_libdir}/wine/%{winepedir}/dplaysvr.%{wineexe} +%{_libdir}/wine/%{winepedir}/dpnsvr.%{wineexe} +%{_libdir}/wine/%{winepedir}/dpvsetup.%{wineexe} +%{_libdir}/wine/%{winepedir}/eject.%{wineexe} +%{_libdir}/wine/%{winepedir}/expand.%{wineexe} +%{_libdir}/wine/%{winepedir}/extrac32.%{wineexe} +%{_libdir}/wine/%{winepedir}/fc.%{wineexe} +%{_libdir}/wine/%{winepedir}/find.%{wineexe} +%{_libdir}/wine/%{winepedir}/findstr.%{wineexe} +%{_libdir}/wine/%{winepedir}/fsutil.%{wineexe} +%{_libdir}/wine/%{winepedir}/hostname.%{wineexe} +%{_libdir}/wine/%{winepedir}/ipconfig.%{wineexe} +%{_libdir}/wine/%{winepedir}/winhlp32.%{wineexe} +%{_libdir}/wine/%{winepedir}/mshta.%{wineexe} %if 0%{?wine_staging} -%{_libdir}/wine/d3dpmesh.%{winedll} -%{_libdir}/wine/diactfrm.%{winedll} -%{_libdir}/wine/dimap.%{winedll} -%{_libdir}/wine/dpmodemx.%{winedll} -%{_libdir}/wine/dpnhupnp.%{winedll} -%{_libdir}/wine/dpvacm.%{winedll} -%{_libdir}/wine/dpvvox.%{winedll} -%{_libdir}/wine/dsdmoprp.%{winedll} -%{_libdir}/wine/dsound3d.%{winedll} -%{_libdir}/wine/dx7vb.%{winedll} -%{_libdir}/wine/dxapi.%{winesys} -%{_libdir}/wine/dxgkrnl.%{winesys} -%{_libdir}/wine/dxgmms1.%{winesys} -%{_libdir}/wine/encapi.%{winedll} -%{_libdir}/wine/gcdef.%{winedll} -%{_libdir}/wine/qdv.%{winedll} -%{_libdir}/wine/qedwipes.%{winedll} -%endif -%{_libdir}/wine/dxva2.%{winedll} -%{_libdir}/wine/esent.%{winedll} -%{_libdir}/wine/evr.%{winedll} -%{_libdir}/wine/explorerframe.%{winedll} -%{_libdir}/wine/ext-ms-win-authz-context-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-domainjoin-netjoin-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-dwmapi-ext-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-dc-l1-2-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-dc-create-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-dc-create-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-devcaps-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-draw-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-draw-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-font-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-font-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-gdi-render-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-kernel32-package-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-kernel32-package-current-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-dialogbox-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-draw-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-gui-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-gui-l1-3-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-keyboard-l1-3-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-misc-l1-2-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-misc-l1-5-1.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-message-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-message-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-misc-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-mouse-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-private-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-private-l1-3-1.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-window-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-window-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-window-l1-1-4.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-windowclass-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ntuser-windowclass-l1-1-1.%{winedll} -%{_libdir}/wine/ext-ms-win-oleacc-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-ras-rasapi32-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-security-credui-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-security-cryptui-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-shell-comctl32-init-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-shell-comdlg32-l1-1-0.%{winedll} -%{_libdir}/wine/ext-ms-win-shell-shell32-l1-2-0.%{winedll} -%{_libdir}/wine/ext-ms-win-uxtheme-themes-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/msidb.%{wineexe} +%endif +%{_libdir}/wine/%{winepedir}/msiexec.%{wineexe} +%{_libdir}/wine/%{winepedir}/net.%{wineexe} +%{_libdir}/wine/%{winepedir}/netstat.%{wineexe} +%{_libdir}/wine/%{winepedir}/ngen.%{wineexe} +%{_libdir}/wine/%{winepedir}/ntoskrnl.%{wineexe} +%{_libdir}/wine/%{winepedir}/oleview.%{wineexe} +%{_libdir}/wine/%{winepedir}/ping.%{wineexe} +%{_libdir}/wine/%{winepedir}/powershell.%{wineexe} +%{_libdir}/wine/%{winepedir}/reg.%{wineexe} +%{_libdir}/wine/%{winepedir}/regasm.%{wineexe} +%{_libdir}/wine/%{winepedir}/regedit.%{wineexe} +%{_libdir}/wine/%{winepedir}/regsvcs.%{wineexe} +%{_libdir}/wine/%{winepedir}/regsvr32.%{wineexe} +%{_libdir}/wine/%{winepedir}/rpcss.%{wineexe} +%{_libdir}/wine/%{winepedir}/rundll32.%{wineexe} +%{_libdir}/wine/%{winepedir}/schtasks.%{wineexe} +%{_libdir}/wine/%{winepedir}/sdbinst.%{wineexe} +%{_libdir}/wine/%{winepedir}/secedit.%{wineexe} +%{_libdir}/wine/%{winepedir}/servicemodelreg.%{wineexe} +%{_libdir}/wine/%{winepedir}/services.%{wineexe} +%{_libdir}/wine/%{winepedir}/start.%{wineexe} +%{_libdir}/wine/%{winepedir}/tasklist.%{wineexe} +%{_libdir}/wine/%{winepedir}/termsv.%{wineexe} +%{_libdir}/wine/%{winepedir}/view.%{wineexe} +%{_libdir}/wine/%{winepedir}/wevtutil.%{wineexe} +%{_libdir}/wine/%{winepedir}/where.%{wineexe} +%{_libdir}/wine/%{winepedir}/whoami.%{wineexe} +%{_libdir}/wine/%{winepedir}/wineboot.%{wineexe} +%{_libdir}/wine/%{winepedir}/winebrowser.%{wineexe} +%{_libdir}/wine/%{winesodir}/winebrowser.exe.so +%{_libdir}/wine/%{winepedir}/wineconsole.%{wineexe} +%{_libdir}/wine/%{winepedir}/winemenubuilder.%{wineexe} +%{_libdir}/wine/%{winesodir}/winemenubuilder.exe.so +%{_libdir}/wine/%{winepedir}/winecfg.%{wineexe} +%{_libdir}/wine/%{winesodir}/winecfg.exe.so +%{_libdir}/wine/%{winepedir}/winedevice.%{wineexe} +%{_libdir}/wine/%{winepedir}/wmplayer.%{wineexe} +%{_libdir}/wine/%{winepedir}/wscript.%{wineexe} +%{_libdir}/wine/%{winepedir}/uninstaller.%{wineexe} + +%{_libdir}/wine/%{winesodir}/libwine.so.1* + +%{_libdir}/wine/%{winepedir}/acledit.%{winedll} +%{_libdir}/wine/%{winepedir}/aclui.%{winedll} +%{_libdir}/wine/%{winepedir}/activeds.%{winedll} +%{_libdir}/wine/%{winepedir}/activeds.%{winetlb} +%{_libdir}/wine/%{winepedir}/actxprxy.%{winedll} +%{_libdir}/wine/%{winepedir}/adsldp.%{winedll} +%{_libdir}/wine/%{winepedir}/adsldpc.%{winedll} +%{_libdir}/wine/%{winepedir}/advapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/advpack.%{winedll} +%{_libdir}/wine/%{winepedir}/amsi.%{winedll} +%{_libdir}/wine/%{winepedir}/amstream.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-appmodel-identity-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-appmodel-runtime-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-appmodel-runtime-l1-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-apiquery-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-appcompat-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-appinit-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-atoms-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-bem-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-com-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-com-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-com-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-comm-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-console-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-console-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-console-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-crt-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-crt-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-datetime-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-datetime-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-debug-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-debug-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-delayload-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-delayload-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-errorhandling-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-errorhandling-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-errorhandling-l1-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-errorhandling-l1-1-3.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-fibers-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-fibers-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l1-2-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l1-2-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l2-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-l2-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-ansi-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-file-fromapp-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-handle-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-heap-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-heap-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-heap-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-heap-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-interlocked-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-interlocked-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-io-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-io-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-job-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-job-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-largeinteger-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-kernel32-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-kernel32-legacy-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-kernel32-legacy-l1-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-kernel32-private-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l1-2-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l1-2-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-libraryloader-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-l1-2-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-l1-2-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-obsolete-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-obsolete-l1-3-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localization-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-localregistry-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-memory-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-memory-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-memory-l1-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-memory-l1-1-3.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-memory-l1-1-4.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-misc-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-namedpipe-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-namedpipe-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-namedpipe-ansi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-namespace-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-normalization-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-path-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-privateprofile-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processenvironment-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processenvironment-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processthreads-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processthreads-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processthreads-l1-1-2.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processthreads-l1-1-3.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-processtopology-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-profile-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-psapi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-psapi-ansi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-psapi-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-quirks-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-realtime-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-registry-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-registry-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-registry-l2-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-registryuserspecific-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-rtlsupport-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-rtlsupport-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-shlwapi-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-shlwapi-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-shlwapi-obsolete-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-shutdown-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-sidebyside-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-string-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-string-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-string-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-stringansi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-stringloader-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-synch-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-synch-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-synch-l1-2-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-synch-ansi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-sysinfo-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-sysinfo-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-sysinfo-l1-2-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-systemtopology-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-threadpool-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-threadpool-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-threadpool-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-threadpool-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-timezone-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-toolhelp-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-url-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-util-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-version-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-version-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-version-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-versionansi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-windowserrorreporting-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-error-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-error-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-errorprivate-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-registration-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-roparameterizediid-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-string-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-winrt-string-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-wow64-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-wow64-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-xstate-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-core-xstate-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-conio-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-convert-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-environment-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-filesystem-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-heap-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-locale-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-math-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-multibyte-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-process-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-runtime-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-stdio-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-string-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-time-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-crt-utility-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-devices-config-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-devices-config-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-devices-query-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-advapi32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-advapi32-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-kernel32-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-normaliz-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-ole32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-shell32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-shlwapi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-shlwapi-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-user32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-downlevel-version-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-dx-d3dkmt-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventing-classicprovider-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventing-consumer-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventing-controller-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventing-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventing-provider-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-eventlog-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-gaming-tcui-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-gdi-dpiinfo-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-mm-joystick-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-mm-misc-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-mm-mme-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-mm-time-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-ntuser-dc-access-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-ntuser-rectangle-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-ntuser-sysparams-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-perf-legacy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-power-base-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-power-setting-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-draw-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-private-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-private-l1-1-4.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-window-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-winevent-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-activedirectoryclient-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-audit-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-base-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-base-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-base-private-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-credentials-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-cryptoapi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-grouppolicy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-lsalookup-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-lsalookup-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-lsalookup-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-lsalookup-l2-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-lsapolicy-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-provider-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-sddl-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-security-systemfunctions-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-core-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-core-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-management-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-management-l2-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-private-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-winsvc-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-service-winsvc-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-obsolete-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-scaling-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-scaling-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-stream-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-stream-winrt-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shcore-thread-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shell-shellcom-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/api-ms-win-shell-shellfolders-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/apphelp.%{winedll} +%{_libdir}/wine/%{winepedir}/appwiz.%{winecpl} +%{_libdir}/wine/%{winepedir}/atl.%{winedll} +%{_libdir}/wine/%{winepedir}/atl80.%{winedll} +%{_libdir}/wine/%{winepedir}/atl90.%{winedll} +%{_libdir}/wine/%{winepedir}/atl100.%{winedll} +%{_libdir}/wine/%{winepedir}/atl110.%{winedll} +%{_libdir}/wine/%{winepedir}/atlthunk.%{winedll} +%{_libdir}/wine/%{winepedir}/atmlib.%{winedll} +%{_libdir}/wine/%{winepedir}/authz.%{winedll} +%{_libdir}/wine/%{winepedir}/avicap32.%{winedll} +%{_libdir}/wine/%{winesodir}/avicap32.dll.so +%{_libdir}/wine/%{winepedir}/avifil32.%{winedll} +%{_libdir}/wine/%{winepedir}/avrt.%{winedll} +%{_libdir}/wine/%{winesodir}/bcrypt.so +%{_libdir}/wine/%{winepedir}/bcrypt.%{winedll} +%{_libdir}/wine/%{winepedir}/bluetoothapis.%{winedll} +%{_libdir}/wine/%{winepedir}/browseui.%{winedll} +%{_libdir}/wine/%{winepedir}/bthprops.%{winecpl} +%{_libdir}/wine/%{winepedir}/cabinet.%{winedll} +%{_libdir}/wine/%{winepedir}/cards.%{winedll} +%{_libdir}/wine/%{winepedir}/cdosys.%{winedll} +%{_libdir}/wine/%{winepedir}/cfgmgr32.%{winedll} +%{_libdir}/wine/%{winepedir}/chcp.%{winecom} +%{_libdir}/wine/%{winepedir}/clock.%{wineexe} +%{_libdir}/wine/%{winepedir}/clusapi.%{winedll} +%{_libdir}/wine/%{winepedir}/combase.%{winedll} +%{_libdir}/wine/%{winepedir}/comcat.%{winedll} +%{_libdir}/wine/%{winepedir}/comctl32.%{winedll} +%{_libdir}/wine/%{winepedir}/comdlg32.%{winedll} +%{_libdir}/wine/%{winepedir}/compstui.%{winedll} +%{_libdir}/wine/%{winepedir}/comsvcs.%{winedll} +%{_libdir}/wine/%{winepedir}/concrt140.%{winedll} +%{_libdir}/wine/%{winepedir}/connect.%{winedll} +%{_libdir}/wine/%{winepedir}/credui.%{winedll} +%{_libdir}/wine/%{winesodir}/crtdll.so +%{_libdir}/wine/%{winepedir}/crtdll.%{winedll} +%{_libdir}/wine/%{winesodir}/crypt32.so +%{_libdir}/wine/%{winepedir}/crypt32.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptdlg.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptdll.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptext.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptnet.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptsp.%{winedll} +%{_libdir}/wine/%{winepedir}/cryptui.%{winedll} +%{_libdir}/wine/%{winepedir}/ctapi32.%{winedll} +%{_libdir}/wine/%{winesodir}/ctapi32.dll.so +%{_libdir}/wine/%{winepedir}/ctl3d32.%{winedll} +%{_libdir}/wine/%{winepedir}/d2d1.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/d3d10.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/d3d10_1.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/d3d10core.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-d3d10.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-d3d10_1.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-d3d10core.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/d3d11.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-d3d11.%{winedll} +%{_libdir}/wine/%{winepedir}/d3d12.%{winedll} +%{_libdir}/wine/%{winesodir}/d3d12.dll.so +%{_libdir}/wine/%{winepedir}/d3dcompiler_*.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dim.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dim700.%{winedll} +%{_libdir}/wine/%{winepedir}/d3drm.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dx9_*.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dx10_*.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dx11_42.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dx11_43.%{winedll} +%{_libdir}/wine/%{winepedir}/d3dxof.%{winedll} +%{_libdir}/wine/%{winepedir}/davclnt.%{winedll} +%{_libdir}/wine/%{winepedir}/dbgeng.%{winedll} +%{_libdir}/wine/%{winepedir}/dbghelp.%{winedll} +%{_libdir}/wine/%{winepedir}/dciman32.%{winedll} +%{_libdir}/wine/%{winepedir}/dcomp.%{winedll} +%{_libdir}/wine/%{winepedir}/ddraw.%{winedll} +%{_libdir}/wine/%{winepedir}/ddrawex.%{winedll} +%{_libdir}/wine/%{winepedir}/devenum.%{winedll} +%{_libdir}/wine/%{winepedir}/dhcpcsvc.%{winedll} +%{_libdir}/wine/%{winepedir}/dhtmled.%{wineocx} +%{_libdir}/wine/%{winepedir}/difxapi.%{winedll} +%{_libdir}/wine/%{winepedir}/dinput.%{winedll} +%{_libdir}/wine/%{winesodir}/dinput.dll.so +%{_libdir}/wine/%{winepedir}/dinput8.%{winedll} +%{_libdir}/wine/%{winesodir}/dinput8.dll.so +%{_libdir}/wine/%{winepedir}/directmanipulation.%{winedll} +%{_libdir}/wine/%{winepedir}/dispex.%{winedll} +%{_libdir}/wine/%{winepedir}/dmband.%{winedll} +%{_libdir}/wine/%{winepedir}/dmcompos.%{winedll} +%{_libdir}/wine/%{winepedir}/dmime.%{winedll} +%{_libdir}/wine/%{winepedir}/dmloader.%{winedll} +%{_libdir}/wine/%{winepedir}/dmscript.%{winedll} +%{_libdir}/wine/%{winepedir}/dmstyle.%{winedll} +%{_libdir}/wine/%{winepedir}/dmsynth.%{winedll} +%{_libdir}/wine/%{winepedir}/dmusic.%{winedll} +%{_libdir}/wine/%{winepedir}/dmusic32.%{winedll} +%{_libdir}/wine/%{winepedir}/dplay.%{winedll} +%{_libdir}/wine/%{winepedir}/dplayx.%{winedll} +%{_libdir}/wine/%{winepedir}/dpnaddr.%{winedll} +%{_libdir}/wine/%{winepedir}/dpnet.%{winedll} +%{_libdir}/wine/%{winepedir}/dpnhpast.%{winedll} +%{_libdir}/wine/%{winepedir}/dpnlobby.%{winedll} +%{_libdir}/wine/%{winepedir}/dpvoice.%{winedll} +%{_libdir}/wine/%{winepedir}/dpwsockx.%{winedll} +%{_libdir}/wine/%{winepedir}/drmclien.%{winedll} +%{_libdir}/wine/%{winepedir}/dsound.%{winedll} +%{_libdir}/wine/%{winepedir}/dsdmo.%{winedll} +%{_libdir}/wine/%{winepedir}/dsquery.%{winedll} +%{_libdir}/wine/%{winepedir}/dssenh.%{winedll} +%{_libdir}/wine/%{winepedir}/dsuiext.%{winedll} +%{_libdir}/wine/%{winepedir}/dswave.%{winedll} +%{_libdir}/wine/%{winepedir}/dwmapi.%{winedll} +%{_libdir}/wine/%{winepedir}/dwrite.%{winedll} +%{_libdir}/wine/%{winesodir}/dwrite.so +%{_libdir}/wine/%{winepedir}/dx8vb.%{winedll} +%{_libdir}/wine/%{winepedir}/dxdiagn.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/dxgi.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-dxgi.%{winedll} +%ghost %{_libdir}/wine/%{winesodir}/dxgi.dll.so +%{_libdir}/wine/%{winesodir}/wine-dxgi.dll.so +%{_libdir}/wine/%{winepedir}/dxgkrnl.%{winesys} +%{_libdir}/wine/%{winepedir}/dxgmms1.%{winesys} +%{_libdir}/wine/%{winepedir}/dxva2.%{winedll} +%{_libdir}/wine/%{winepedir}/esent.%{winedll} +%{_libdir}/wine/%{winepedir}/evr.%{winedll} +%{_libdir}/wine/%{winepedir}/explorerframe.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-authz-context-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-domainjoin-netjoin-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-dwmapi-ext-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-dc-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-dc-create-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-dc-create-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-devcaps-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-draw-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-draw-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-font-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-font-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-gdi-render-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-kernel32-package-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-kernel32-package-current-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-dialogbox-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-draw-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-gui-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-gui-l1-3-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-keyboard-l1-3-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-misc-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-misc-l1-5-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-message-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-message-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-misc-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-mouse-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-private-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-private-l1-3-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-rectangle-ext-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-uicontext-ext-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-window-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-window-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-window-l1-1-4.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-windowclass-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ntuser-windowclass-l1-1-1.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-oleacc-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-ras-rasapi32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-gdi-object-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-gdi-rgn-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-security-credui-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-security-cryptui-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-shell-comctl32-init-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-shell-comdlg32-l1-1-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-shell-shell32-l1-2-0.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-uxtheme-themes-l1-1-0.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so -%{_libdir}/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so -%endif -%{_libdir}/wine/faultrep.%{winedll} -%{_libdir}/wine/feclient.%{winedll} -%{_libdir}/wine/fltlib.%{winedll} -%{_libdir}/wine/fltmgr.%{winesys} -%{_libdir}/wine/fntcache.%{winedll} -%{_libdir}/wine/fontsub.%{winedll} -%{_libdir}/wine/fusion.%{winedll} -%{_libdir}/wine/fwpuclnt.%{winedll} -%{_libdir}/wine/gameux.%{winedll} -%{_libdir}/wine/gdi32.so -%{_libdir}/wine/gdi32.%{winedll} -%{_libdir}/wine/gdiplus.%{winedll} -%{_libdir}/wine/glu32.%{winedll} -%{_libdir}/wine/gphoto2.ds.so -%{_libdir}/wine/gpkcsp.%{winedll} -%{_libdir}/wine/hal.%{winedll} -%{_libdir}/wine/hh.%{wineexe} -%{_libdir}/wine/hhctrl.%{wineocx} -%{_libdir}/wine/hid.%{winedll} -%{_libdir}/wine/hidclass.%{winesys} -%{_libdir}/wine/hlink.%{winedll} -%{_libdir}/wine/hnetcfg.%{winedll} -%{_libdir}/wine/http.%{winesys} -%{_libdir}/wine/httpapi.%{winedll} -%{_libdir}/wine/icacls.%{wineexe} -%{_libdir}/wine/iccvid.%{winedll} -%{_libdir}/wine/icinfo.%{wineexe} -%{_libdir}/wine/icmp.%{winedll} -%{_libdir}/wine/ieframe.%{winedll} +%{_libdir}/wine/%{winepedir}/ext-ms-win-appmodel-usercontext-l1-1-0.%{winedll} +%{_libdir}/wine/%{winesodir}/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so +%{_libdir}/wine/%{winepedir}/ext-ms-win-xaml-pal-l1-1-0.%{winedll} +%{_libdir}/wine/%{winesodir}/ext-ms-win-xaml-pal-l1-1-0.dll.so +%endif +%{_libdir}/wine/%{winepedir}/faultrep.%{winedll} +%{_libdir}/wine/%{winepedir}/feclient.%{winedll} +%{_libdir}/wine/%{winepedir}/fltlib.%{winedll} +%{_libdir}/wine/%{winepedir}/fltmgr.%{winesys} +%{_libdir}/wine/%{winepedir}/fntcache.%{winedll} +%{_libdir}/wine/%{winepedir}/fontsub.%{winedll} +%{_libdir}/wine/%{winepedir}/fusion.%{winedll} +%{_libdir}/wine/%{winepedir}/fwpuclnt.%{winedll} +%{_libdir}/wine/%{winepedir}/gameux.%{winedll} +%{_libdir}/wine/%{winepedir}/gamingtcui.%{winedll} +%{_libdir}/wine/%{winesodir}/gdi32.so +%{_libdir}/wine/%{winepedir}/gdi32.%{winedll} +%{_libdir}/wine/%{winepedir}/gdiplus.%{winedll} +%{_libdir}/wine/%{winepedir}/glu32.%{winedll} +%{_libdir}/wine/%{winepedir}/gphoto2.%{wineds} +%{_libdir}/wine/%{winesodir}/gphoto2.ds.so +%{_libdir}/wine/%{winepedir}/gpkcsp.%{winedll} +%{_libdir}/wine/%{winepedir}/hal.%{winedll} +%{_libdir}/wine/%{winepedir}/hh.%{wineexe} +%{_libdir}/wine/%{winepedir}/hhctrl.%{wineocx} +%{_libdir}/wine/%{winepedir}/hid.%{winedll} +%{_libdir}/wine/%{winepedir}/hidclass.%{winesys} +%{_libdir}/wine/%{winepedir}/hlink.%{winedll} +%{_libdir}/wine/%{winepedir}/hnetcfg.%{winedll} +%{_libdir}/wine/%{winepedir}/http.%{winesys} +%{_libdir}/wine/%{winepedir}/httpapi.%{winedll} +%{_libdir}/wine/%{winepedir}/icacls.%{wineexe} +%{_libdir}/wine/%{winepedir}/iccvid.%{winedll} +%{_libdir}/wine/%{winepedir}/icinfo.%{wineexe} +%{_libdir}/wine/%{winepedir}/icmp.%{winedll} +%{_libdir}/wine/%{winepedir}/ieframe.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/iertutil.%{winedll} -%endif -%{_libdir}/wine/ieproxy.%{winedll} -%{_libdir}/wine/imaadp32.%{wineacm} -%{_libdir}/wine/imagehlp.%{winedll} -%{_libdir}/wine/imm32.%{winedll} -%{_libdir}/wine/inetcomm.%{winedll} -%{_libdir}/wine/inetcpl.%{winecpl} -%{_libdir}/wine/inetmib1.%{winedll} -%{_libdir}/wine/infosoft.%{winedll} -%{_libdir}/wine/initpki.%{winedll} -%{_libdir}/wine/inkobj.%{winedll} -%{_libdir}/wine/inseng.%{winedll} -%{_libdir}/wine/iphlpapi.dll.so -%{_libdir}/wine/iprop.%{winedll} -%{_libdir}/wine/irprops.%{winecpl} -%{_libdir}/wine/itircl.%{winedll} -%{_libdir}/wine/itss.%{winedll} -%{_libdir}/wine/joy.%{winecpl} -%{_libdir}/wine/jscript.%{winedll} -%{_libdir}/wine/jsproxy.%{winedll} -%{_libdir}/wine/kerberos.so -%{_libdir}/wine/kerberos.%{winedll} -%{_libdir}/wine/kernel32.%{winedll} -%{_libdir}/wine/kernelbase.%{winedll} -%{_libdir}/wine/ksecdd.%{winesys} -%{_libdir}/wine/ksproxy.%{wineax} -%{_libdir}/wine/ksuser.%{winedll} -%{_libdir}/wine/ktmw32.%{winedll} +%{_libdir}/wine/%{winepedir}/iertutil.%{winedll} +%endif +%{_libdir}/wine/%{winepedir}/ieproxy.%{winedll} +%{_libdir}/wine/%{winepedir}/imaadp32.%{wineacm} +%{_libdir}/wine/%{winepedir}/imagehlp.%{winedll} +%{_libdir}/wine/%{winepedir}/imm32.%{winedll} +%{_libdir}/wine/%{winepedir}/inetcomm.%{winedll} +%{_libdir}/wine/%{winepedir}/inetcpl.%{winecpl} +%{_libdir}/wine/%{winepedir}/inetmib1.%{winedll} +%{_libdir}/wine/%{winepedir}/infosoft.%{winedll} +%{_libdir}/wine/%{winepedir}/initpki.%{winedll} +%{_libdir}/wine/%{winepedir}/inkobj.%{winedll} +%{_libdir}/wine/%{winepedir}/inseng.%{winedll} +%{_libdir}/wine/%{winepedir}/iphlpapi.%{winedll} +%{_libdir}/wine/%{winesodir}/iphlpapi.dll.so +%{_libdir}/wine/%{winepedir}/iprop.%{winedll} +%{_libdir}/wine/%{winepedir}/irprops.%{winecpl} +%{_libdir}/wine/%{winepedir}/itircl.%{winedll} +%{_libdir}/wine/%{winepedir}/itss.%{winedll} +%{_libdir}/wine/%{winepedir}/joy.%{winecpl} +%{_libdir}/wine/%{winepedir}/jscript.%{winedll} +%{_libdir}/wine/%{winepedir}/jsproxy.%{winedll} +%{_libdir}/wine/%{winesodir}/kerberos.so +%{_libdir}/wine/%{winepedir}/kerberos.%{winedll} +%{_libdir}/wine/%{winepedir}/kernel32.%{winedll} +%{_libdir}/wine/%{winepedir}/kernelbase.%{winedll} +%{_libdir}/wine/%{winepedir}/ksecdd.%{winesys} +%{_libdir}/wine/%{winepedir}/ksproxy.%{wineax} +%{_libdir}/wine/%{winepedir}/ksuser.%{winedll} +%{_libdir}/wine/%{winepedir}/ktmw32.%{winedll} %if 0%{?fedora} > 24 -%{_libdir}/wine/l3codeca.acm.so -%endif -%{_libdir}/wine/loadperf.%{winedll} -%{_libdir}/wine/localspl.%{winedll} -%{_libdir}/wine/localui.%{winedll} -%{_libdir}/wine/lodctr.%{wineexe} -%{_libdir}/wine/lz32.%{winedll} -%{_libdir}/wine/mapi32.%{winedll} -%{_libdir}/wine/mapistub.%{winedll} -%{_libdir}/wine/mciavi32.%{winedll} -%{_libdir}/wine/mcicda.%{winedll} -%{_libdir}/wine/mciqtz32.%{winedll} -%{_libdir}/wine/mciseq.%{winedll} -%{_libdir}/wine/mciwave.%{winedll} -%{_libdir}/wine/mf.%{winedll} -%{_libdir}/wine/mf3216.%{winedll} -%{_libdir}/wine/mferror.%{winedll} -%{_libdir}/wine/mfmediaengine.%{winedll} -%{_libdir}/wine/mfplat.%{winedll} -%{_libdir}/wine/mfplay.%{winedll} -%{_libdir}/wine/mfreadwrite.%{winedll} -%{_libdir}/wine/mgmtapi.%{winedll} -%{_libdir}/wine/midimap.%{winedll} -%{_libdir}/wine/mlang.%{winedll} -%{_libdir}/wine/mmcndmgr.%{winedll} -%{_libdir}/wine/mmdevapi.%{winedll} -%{_libdir}/wine/mofcomp.%{wineexe} -%{_libdir}/wine/mountmgr.sys.so -%{_libdir}/wine/mp3dmod.dll.so -%{_libdir}/wine/mpr.%{winedll} -%{_libdir}/wine/mprapi.%{winedll} -%{_libdir}/wine/msacm32.%{winedll} -%{_libdir}/wine/msacm32.%{winedrv} -%{_libdir}/wine/msado15.%{winedll} -%{_libdir}/wine/msadp32.%{wineacm} -%{_libdir}/wine/msasn1.%{winedll} -%{_libdir}/wine/mscat32.%{winedll} -%{_libdir}/wine/mscoree.%{winedll} -%{_libdir}/wine/mscorwks.%{winedll} -%{_libdir}/wine/msctf.%{winedll} -%{_libdir}/wine/msctfp.%{winedll} -%{_libdir}/wine/msdaps.%{winedll} -%{_libdir}/wine/msdelta.%{winedll} -%{_libdir}/wine/msdmo.%{winedll} -%{_libdir}/wine/msdrm.%{winedll} -%{_libdir}/wine/msftedit.%{winedll} -%{_libdir}/wine/msg711.%{wineacm} -%{_libdir}/wine/msgsm32.acm.so -%{_libdir}/wine/mshtml.%{winedll} -%{_libdir}/wine/mshtml.%{winetlb} -%{_libdir}/wine/msi.%{winedll} -%{_libdir}/wine/msident.%{winedll} -%{_libdir}/wine/msimtf.%{winedll} -%{_libdir}/wine/msimg32.%{winedll} -%{_libdir}/wine/msimsg.%{winedll} -%{_libdir}/wine/msinfo32.%{wineexe} -%{_libdir}/wine/msisip.%{winedll} -%{_libdir}/wine/msisys.%{wineocx} -%{_libdir}/wine/msls31.%{winedll} -%{_libdir}/wine/msnet32.%{winedll} -%{_libdir}/wine/mspatcha.%{winedll} -%{_libdir}/wine/msports.%{winedll} -%{_libdir}/wine/msscript.%{wineocx} -%{_libdir}/wine/mssign32.%{winedll} -%{_libdir}/wine/mssip32.%{winedll} -%{_libdir}/wine/msrle32.%{winedll} -%{_libdir}/wine/mstask.%{winedll} -%{_libdir}/wine/msvcirt.%{winedll} -%{_libdir}/wine/msvcm80.%{winedll} -%{_libdir}/wine/msvcm90.%{winedll} -%{_libdir}/wine/msvcp60.%{winedll} -%{_libdir}/wine/msvcp70.%{winedll} -%{_libdir}/wine/msvcp71.%{winedll} -%{_libdir}/wine/msvcp80.%{winedll} -%{_libdir}/wine/msvcp90.%{winedll} -%{_libdir}/wine/msvcp100.%{winedll} -%{_libdir}/wine/msvcp110.%{winedll} -%{_libdir}/wine/msvcp120.%{winedll} -%{_libdir}/wine/msvcp120_app.%{winedll} -%{_libdir}/wine/msvcp140.%{winedll} -%{_libdir}/wine/msvcp140_1.%{winedll} -%{_libdir}/wine/msvcr70.so -%{_libdir}/wine/msvcr70.%{winedll} -%{_libdir}/wine/msvcr71.so -%{_libdir}/wine/msvcr71.%{winedll} -%{_libdir}/wine/msvcr80.so -%{_libdir}/wine/msvcr80.%{winedll} -%{_libdir}/wine/msvcr90.so -%{_libdir}/wine/msvcr90.%{winedll} -%{_libdir}/wine/msvcr100.so -%{_libdir}/wine/msvcr100.%{winedll} -%{_libdir}/wine/msvcr110.so -%{_libdir}/wine/msvcr110.%{winedll} -%{_libdir}/wine/msvcr120.so -%{_libdir}/wine/msvcr120.%{winedll} -%{_libdir}/wine/msvcr120_app.%{winedll} -%{_libdir}/wine/msvcrt.so -%{_libdir}/wine/msvcrt.%{winedll} -%{_libdir}/wine/msvcrt20.%{winedll} -%{_libdir}/wine/msvcrt40.%{winedll} -%{_libdir}/wine/msvcrtd.so -%{_libdir}/wine/msvcrtd.%{winedll} -%{_libdir}/wine/msvfw32.%{winedll} -%{_libdir}/wine/msvidc32.%{winedll} -%{_libdir}/wine/mswsock.%{winedll} -%{_libdir}/wine/msxml.%{winedll} -%{_libdir}/wine/msxml2.%{winedll} -%{_libdir}/wine/msxml3.dll.so -%{_libdir}/wine/msxml4.%{winedll} -%{_libdir}/wine/msxml6.%{winedll} -%{_libdir}/wine/mtxdm.%{winedll} -%{_libdir}/wine/nddeapi.%{winedll} -%{_libdir}/wine/ncrypt.%{winedll} -%{_libdir}/wine/ndis.%{winesys} -%{_libdir}/wine/netapi32.so -%{_libdir}/wine/netapi32.%{winedll} -%{_libdir}/wine/netcfgx.%{winedll} -%{_libdir}/wine/netio.%{winesys} -%{_libdir}/wine/netprofm.%{winedll} -%{_libdir}/wine/netsh.%{wineexe} +%{_libdir}/wine/%{winepedir}/l3codeca.%{wineacm} +%{_libdir}/wine/%{winesodir}/l3codeca.acm.so +%endif +%{_libdir}/wine/%{winepedir}/loadperf.%{winedll} +%{_libdir}/wine/%{winepedir}/localspl.%{winedll} +%{_libdir}/wine/%{winepedir}/localui.%{winedll} +%{_libdir}/wine/%{winepedir}/lodctr.%{wineexe} +%{_libdir}/wine/%{winepedir}/lz32.%{winedll} +%{_libdir}/wine/%{winepedir}/mapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/mapistub.%{winedll} +%{_libdir}/wine/%{winepedir}/mciavi32.%{winedll} +%{_libdir}/wine/%{winepedir}/mcicda.%{winedll} +%{_libdir}/wine/%{winepedir}/mciqtz32.%{winedll} +%{_libdir}/wine/%{winepedir}/mciseq.%{winedll} +%{_libdir}/wine/%{winepedir}/mciwave.%{winedll} +%{_libdir}/wine/%{winepedir}/mf.%{winedll} +%{_libdir}/wine/%{winepedir}/mf3216.%{winedll} +%{_libdir}/wine/%{winepedir}/mferror.%{winedll} +%{_libdir}/wine/%{winepedir}/mfmediaengine.%{winedll} +%{_libdir}/wine/%{winepedir}/mfplat.%{winedll} +%{_libdir}/wine/%{winepedir}/mfplay.%{winedll} +%{_libdir}/wine/%{winepedir}/mfreadwrite.%{winedll} +%{_libdir}/wine/%{winepedir}/mgmtapi.%{winedll} +%{_libdir}/wine/%{winepedir}/midimap.%{winedll} +%{_libdir}/wine/%{winepedir}/mlang.%{winedll} +%{_libdir}/wine/%{winepedir}/mmcndmgr.%{winedll} +%{_libdir}/wine/%{winepedir}/mmdevapi.%{winedll} +%{_libdir}/wine/%{winepedir}/mofcomp.%{wineexe} +%{_libdir}/wine/%{winepedir}/mountmgr.%{winesys} +%{_libdir}/wine/%{winesodir}/mountmgr.sys.so +%{_libdir}/wine/%{winepedir}/mp3dmod.%{winedll} +%{_libdir}/wine/%{winesodir}/mp3dmod.dll.so +%{_libdir}/wine/%{winepedir}/mpr.%{winedll} +%{_libdir}/wine/%{winepedir}/mprapi.%{winedll} +%{_libdir}/wine/%{winepedir}/msacm32.%{winedll} +%{_libdir}/wine/%{winepedir}/msacm32.%{winedrv} +%{_libdir}/wine/%{winepedir}/msado15.%{winedll} +%{_libdir}/wine/%{winepedir}/msadp32.%{wineacm} +%{_libdir}/wine/%{winepedir}/msasn1.%{winedll} +%{_libdir}/wine/%{winepedir}/mscat32.%{winedll} +%{_libdir}/wine/%{winepedir}/mscoree.%{winedll} +%{_libdir}/wine/%{winepedir}/mscorwks.%{winedll} +%{_libdir}/wine/%{winepedir}/msctf.%{winedll} +%{_libdir}/wine/%{winepedir}/msctfp.%{winedll} +%{_libdir}/wine/%{winepedir}/msdaps.%{winedll} +%{_libdir}/wine/%{winepedir}/msdelta.%{winedll} +%{_libdir}/wine/%{winepedir}/msdmo.%{winedll} +%{_libdir}/wine/%{winepedir}/msdrm.%{winedll} +%{_libdir}/wine/%{winepedir}/msftedit.%{winedll} +%{_libdir}/wine/%{winepedir}/msg711.%{wineacm} +%{_libdir}/wine/%{winepedir}/msgsm32.%{wineacm} +%{_libdir}/wine/%{winesodir}/msgsm32.acm.so +%{_libdir}/wine/%{winepedir}/mshtml.%{winedll} +%{_libdir}/wine/%{winepedir}/mshtml.%{winetlb} +%{_libdir}/wine/%{winepedir}/msi.%{winedll} +%{_libdir}/wine/%{winepedir}/msident.%{winedll} +%{_libdir}/wine/%{winepedir}/msimtf.%{winedll} +%{_libdir}/wine/%{winepedir}/msimg32.%{winedll} +%{_libdir}/wine/%{winepedir}/msimsg.%{winedll} +%{_libdir}/wine/%{winepedir}/msinfo32.%{wineexe} +%{_libdir}/wine/%{winepedir}/msisip.%{winedll} +%{_libdir}/wine/%{winepedir}/msisys.%{wineocx} +%{_libdir}/wine/%{winepedir}/msls31.%{winedll} +%{_libdir}/wine/%{winepedir}/msnet32.%{winedll} +%{_libdir}/wine/%{winepedir}/mspatcha.%{winedll} +%{_libdir}/wine/%{winepedir}/msports.%{winedll} +%{_libdir}/wine/%{winepedir}/msscript.%{wineocx} +%{_libdir}/wine/%{winepedir}/mssign32.%{winedll} +%{_libdir}/wine/%{winepedir}/mssip32.%{winedll} +%{_libdir}/wine/%{winepedir}/msrle32.%{winedll} +%{_libdir}/wine/%{winepedir}/mstask.%{winedll} +%{_libdir}/wine/%{winepedir}/msv1_0.%{winedll} +%{_libdir}/wine/%{winesodir}/msv1_0.so +%{_libdir}/wine/%{winepedir}/msvcirt.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcm80.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcm90.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp60.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp70.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp71.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp80.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp90.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp100.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp110.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp120.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp120_app.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp140.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcp140_1.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr70.so +%{_libdir}/wine/%{winepedir}/msvcr70.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr71.so +%{_libdir}/wine/%{winepedir}/msvcr71.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr80.so +%{_libdir}/wine/%{winepedir}/msvcr80.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr90.so +%{_libdir}/wine/%{winepedir}/msvcr90.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr100.so +%{_libdir}/wine/%{winepedir}/msvcr100.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr110.so +%{_libdir}/wine/%{winepedir}/msvcr110.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcr120.so +%{_libdir}/wine/%{winepedir}/msvcr120.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcr120_app.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcrt.so +%{_libdir}/wine/%{winepedir}/msvcrt.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcrt20.%{winedll} +%{_libdir}/wine/%{winepedir}/msvcrt40.%{winedll} +%{_libdir}/wine/%{winesodir}/msvcrtd.so +%{_libdir}/wine/%{winepedir}/msvcrtd.%{winedll} +%{_libdir}/wine/%{winepedir}/msvfw32.%{winedll} +%{_libdir}/wine/%{winepedir}/msvidc32.%{winedll} +%{_libdir}/wine/%{winepedir}/mswsock.%{winedll} +%{_libdir}/wine/%{winepedir}/msxml.%{winedll} +%{_libdir}/wine/%{winepedir}/msxml2.%{winedll} +%{_libdir}/wine/%{winepedir}/msxml3.%{winedll} +%{_libdir}/wine/%{winesodir}/msxml3.dll.so +%{_libdir}/wine/%{winepedir}/msxml4.%{winedll} +%{_libdir}/wine/%{winepedir}/msxml6.%{winedll} +%{_libdir}/wine/%{winepedir}/mtxdm.%{winedll} +%{_libdir}/wine/%{winepedir}/nddeapi.%{winedll} +%{_libdir}/wine/%{winepedir}/ncrypt.%{winedll} +%{_libdir}/wine/%{winepedir}/ndis.%{winesys} +%{_libdir}/wine/%{winesodir}/netapi32.so +%{_libdir}/wine/%{winepedir}/netapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/netcfgx.%{winedll} +%{_libdir}/wine/%{winepedir}/netio.%{winesys} +%{_libdir}/wine/%{winepedir}/netprofm.%{winedll} +%{_libdir}/wine/%{winepedir}/netsh.%{wineexe} %if 0%{?wine_staging} -%{_libdir}/wine/netutils.%{winedll} -%endif -%{_libdir}/wine/newdev.%{winedll} -%{_libdir}/wine/ninput.%{winedll} -%{_libdir}/wine/normaliz.%{winedll} -%{_libdir}/wine/npmshtml.%{winedll} -%{_libdir}/wine/npptools.%{winedll} -%{_libdir}/wine/ntdll.so -%{_libdir}/wine/ntdll.%{winedll} -%{_libdir}/wine/ntdsapi.%{winedll} -%{_libdir}/wine/ntprint.%{winedll} +%{_libdir}/wine/%{winepedir}/netutils.%{winedll} +%endif +%{_libdir}/wine/%{winepedir}/newdev.%{winedll} +%{_libdir}/wine/%{winepedir}/ninput.%{winedll} +%{_libdir}/wine/%{winepedir}/normaliz.%{winedll} +%{_libdir}/wine/%{winepedir}/npmshtml.%{winedll} +%{_libdir}/wine/%{winepedir}/npptools.%{winedll} +%{_libdir}/wine/%{winesodir}/ntdll.so +%{_libdir}/wine/%{winepedir}/ntdll.%{winedll} +%{_libdir}/wine/%{winepedir}/ntdsapi.%{winedll} +%{_libdir}/wine/%{winepedir}/ntprint.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/nvcuda.dll.so -%{_libdir}/wine/nvcuvid.dll.so -%endif -%{_libdir}/wine/objsel.%{winedll} -%{_libdir}/wine/odbc32.so -%{_libdir}/wine/odbc32.%{winedll} -%{_libdir}/wine/odbcbcp.%{winedll} -%{_libdir}/wine/odbccp32.%{winedll} -%{_libdir}/wine/odbccu32.%{winedll} -%{_libdir}/wine/ole32.%{winedll} -%{_libdir}/wine/oleacc.%{winedll} -%{_libdir}/wine/oleaut32.%{winedll} -%{_libdir}/wine/olecli32.%{winedll} -%{_libdir}/wine/oledb32.%{winedll} -%{_libdir}/wine/oledlg.%{winedll} -%{_libdir}/wine/olepro32.%{winedll} -%{_libdir}/wine/olesvr32.%{winedll} -%{_libdir}/wine/olethk32.%{winedll} -%{_libdir}/wine/opcservices.%{winedll} -%{_libdir}/wine/packager.%{winedll} -%{_libdir}/wine/pdh.%{winedll} -%{_libdir}/wine/photometadatahandler.%{winedll} -%{_libdir}/wine/pidgen.%{winedll} -%{_libdir}/wine/powrprof.%{winedll} -%{_libdir}/wine/presentationfontcache.%{wineexe} -%{_libdir}/wine/printui.%{winedll} -%{_libdir}/wine/prntvpt.%{winedll} -%{_libdir}/wine/propsys.%{winedll} -%{_libdir}/wine/psapi.%{winedll} -%{_libdir}/wine/pstorec.%{winedll} -%{_libdir}/wine/pwrshplugin.%{winedll} -%{_libdir}/wine/qasf.%{winedll} -%{_libdir}/wine/qcap.%{winedll} -%{_libdir}/wine/qcap.so -%{_libdir}/wine/qdvd.%{winedll} -%{_libdir}/wine/qedit.%{winedll} -%{_libdir}/wine/qmgr.%{winedll} -%{_libdir}/wine/qmgrprxy.%{winedll} -%{_libdir}/wine/quartz.%{winedll} -%{_libdir}/wine/query.%{winedll} -%{_libdir}/wine/qwave.%{winedll} -%{_libdir}/wine/rasapi32.%{winedll} -%{_libdir}/wine/rasdlg.%{winedll} -%{_libdir}/wine/regapi.%{winedll} -%{_libdir}/wine/regini.%{wineexe} -%{_libdir}/wine/resutils.%{winedll} -%{_libdir}/wine/riched20.%{winedll} -%{_libdir}/wine/riched32.%{winedll} -%{_libdir}/wine/rpcrt4.%{winedll} -%{_libdir}/wine/rsabase.%{winedll} -%{_libdir}/wine/rsaenh.%{winedll} -%{_libdir}/wine/rstrtmgr.%{winedll} -%{_libdir}/wine/rtutils.%{winedll} -%{_libdir}/wine/rtworkq.%{winedll} -%{_libdir}/wine/samlib.%{winedll} -%{_libdir}/wine/sapi.%{winedll} -%{_libdir}/wine/sas.%{winedll} -%{_libdir}/wine/sc.%{wineexe} -%{_libdir}/wine/scarddlg.%{winedll} -%{_libdir}/wine/sccbase.%{winedll} -%{_libdir}/wine/schannel.%{winedll} -%{_libdir}/wine/scrobj.%{winedll} -%{_libdir}/wine/scrrun.%{winedll} -%{_libdir}/wine/scsiport.%{winesys} -%{_libdir}/wine/sechost.%{winedll} -%{_libdir}/wine/secur32.dll.so -%{_libdir}/wine/sensapi.%{winedll} -%{_libdir}/wine/serialui.%{winedll} -%{_libdir}/wine/setupapi.%{winedll} -%{_libdir}/wine/sfc_os.%{winedll} -%{_libdir}/wine/shcore.%{winedll} -%{_libdir}/wine/shdoclc.%{winedll} -%{_libdir}/wine/shdocvw.%{winedll} -%{_libdir}/wine/schedsvc.%{winedll} -%{_libdir}/wine/shell32.dll.so -%{_libdir}/wine/shfolder.%{winedll} -%{_libdir}/wine/shlwapi.%{winedll} -%{_libdir}/wine/shutdown.%{wineexe} -%{_libdir}/wine/slbcsp.%{winedll} -%{_libdir}/wine/slc.%{winedll} -%{_libdir}/wine/snmpapi.%{winedll} -%{_libdir}/wine/softpub.%{winedll} -%{_libdir}/wine/spoolsv.%{wineexe} -%{_libdir}/wine/srclient.%{winedll} +%{_libdir}/wine/%{winepedir}/nvcuda.%{winedll} +%{_libdir}/wine/%{winesodir}/nvcuda.dll.so +%{_libdir}/wine/%{winepedir}/nvcuvid.%{winedll} +%{_libdir}/wine/%{winesodir}/nvcuvid.dll.so +%endif +%{_libdir}/wine/%{winepedir}/objsel.%{winedll} +%{_libdir}/wine/%{winesodir}/odbc32.so +%{_libdir}/wine/%{winepedir}/odbc32.%{winedll} +%{_libdir}/wine/%{winepedir}/odbcbcp.%{winedll} +%{_libdir}/wine/%{winepedir}/odbccp32.%{winedll} +%{_libdir}/wine/%{winepedir}/odbccu32.%{winedll} +%{_libdir}/wine/%{winepedir}/ole32.%{winedll} +%{_libdir}/wine/%{winepedir}/oleacc.%{winedll} +%{_libdir}/wine/%{winepedir}/oleaut32.%{winedll} +%{_libdir}/wine/%{winepedir}/olecli32.%{winedll} +%{_libdir}/wine/%{winepedir}/oledb32.%{winedll} +%{_libdir}/wine/%{winepedir}/oledlg.%{winedll} +%{_libdir}/wine/%{winepedir}/olepro32.%{winedll} +%{_libdir}/wine/%{winepedir}/olesvr32.%{winedll} +%{_libdir}/wine/%{winepedir}/olethk32.%{winedll} +%{_libdir}/wine/%{winepedir}/opcservices.%{winedll} +%{_libdir}/wine/%{winepedir}/packager.%{winedll} +%{_libdir}/wine/%{winepedir}/pdh.%{winedll} +%{_libdir}/wine/%{winepedir}/photometadatahandler.%{winedll} +%{_libdir}/wine/%{winepedir}/pidgen.%{winedll} +%{_libdir}/wine/%{winepedir}/powrprof.%{winedll} +%{_libdir}/wine/%{winepedir}/presentationfontcache.%{wineexe} +%{_libdir}/wine/%{winepedir}/printui.%{winedll} +%{_libdir}/wine/%{winepedir}/prntvpt.%{winedll} +%{_libdir}/wine/%{winepedir}/propsys.%{winedll} +%{_libdir}/wine/%{winepedir}/psapi.%{winedll} +%{_libdir}/wine/%{winepedir}/pstorec.%{winedll} +%{_libdir}/wine/%{winepedir}/pwrshplugin.%{winedll} +%{_libdir}/wine/%{winepedir}/qasf.%{winedll} +%{_libdir}/wine/%{winepedir}/qcap.%{winedll} +%{_libdir}/wine/%{winesodir}/qcap.so +%{_libdir}/wine/%{winepedir}/qdvd.%{winedll} +%{_libdir}/wine/%{winepedir}/qedit.%{winedll} +%{_libdir}/wine/%{winepedir}/qmgr.%{winedll} +%{_libdir}/wine/%{winepedir}/qmgrprxy.%{winedll} +%{_libdir}/wine/%{winepedir}/quartz.%{winedll} +%{_libdir}/wine/%{winepedir}/query.%{winedll} +%{_libdir}/wine/%{winepedir}/qwave.%{winedll} +%{_libdir}/wine/%{winepedir}/rasapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/rasdlg.%{winedll} +%{_libdir}/wine/%{winepedir}/regapi.%{winedll} +%{_libdir}/wine/%{winepedir}/regini.%{wineexe} +%{_libdir}/wine/%{winepedir}/resutils.%{winedll} +%{_libdir}/wine/%{winepedir}/riched20.%{winedll} +%{_libdir}/wine/%{winepedir}/riched32.%{winedll} +%{_libdir}/wine/%{winepedir}/rpcrt4.%{winedll} +%{_libdir}/wine/%{winepedir}/rsabase.%{winedll} +%{_libdir}/wine/%{winepedir}/rsaenh.%{winedll} +%{_libdir}/wine/%{winepedir}/rstrtmgr.%{winedll} +%{_libdir}/wine/%{winepedir}/rtutils.%{winedll} +%{_libdir}/wine/%{winepedir}/rtworkq.%{winedll} +%{_libdir}/wine/%{winepedir}/samlib.%{winedll} +%{_libdir}/wine/%{winepedir}/sapi.%{winedll} +%{_libdir}/wine/%{winepedir}/sas.%{winedll} +%{_libdir}/wine/%{winepedir}/sc.%{wineexe} +%{_libdir}/wine/%{winepedir}/scarddlg.%{winedll} +%{_libdir}/wine/%{winepedir}/sccbase.%{winedll} +%{_libdir}/wine/%{winepedir}/schannel.%{winedll} +%{_libdir}/wine/%{winepedir}/scrobj.%{winedll} +%{_libdir}/wine/%{winepedir}/scrrun.%{winedll} +%{_libdir}/wine/%{winepedir}/scsiport.%{winesys} +%{_libdir}/wine/%{winepedir}/sechost.%{winedll} +%{_libdir}/wine/%{winepedir}/secur32.%{winedll} +%{_libdir}/wine/%{winesodir}/secur32.so +%{_libdir}/wine/%{winepedir}/sensapi.%{winedll} +%{_libdir}/wine/%{winepedir}/serialui.%{winedll} +%{_libdir}/wine/%{winepedir}/setupapi.%{winedll} +%{_libdir}/wine/%{winepedir}/sfc_os.%{winedll} +%{_libdir}/wine/%{winepedir}/shcore.%{winedll} +%{_libdir}/wine/%{winepedir}/shdoclc.%{winedll} +%{_libdir}/wine/%{winepedir}/shdocvw.%{winedll} +%{_libdir}/wine/%{winepedir}/schedsvc.%{winedll} +%{_libdir}/wine/%{winepedir}/shell32.%{winedll} +%{_libdir}/wine/%{winesodir}/shell32.dll.so +%{_libdir}/wine/%{winepedir}/shfolder.%{winedll} +%{_libdir}/wine/%{winepedir}/shlwapi.%{winedll} +%{_libdir}/wine/%{winepedir}/shutdown.%{wineexe} +%{_libdir}/wine/%{winepedir}/slbcsp.%{winedll} +%{_libdir}/wine/%{winepedir}/slc.%{winedll} +%{_libdir}/wine/%{winepedir}/snmpapi.%{winedll} +%{_libdir}/wine/%{winepedir}/softpub.%{winedll} +%{_libdir}/wine/%{winepedir}/spoolsv.%{wineexe} +%{_libdir}/wine/%{winepedir}/srclient.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/srvcli.%{winedll} -%endif -%{_libdir}/wine/sspicli.%{winedll} -%{_libdir}/wine/stdole2.%{winetlb} -%{_libdir}/wine/stdole32.%{winetlb} -%{_libdir}/wine/sti.%{winedll} -%{_libdir}/wine/strmdll.%{winedll} -%{_libdir}/wine/subst.%{wineexe} -%{_libdir}/wine/svchost.%{wineexe} -%{_libdir}/wine/svrapi.%{winedll} -%{_libdir}/wine/sxs.%{winedll} -%{_libdir}/wine/systeminfo.%{wineexe} -%{_libdir}/wine/t2embed.%{winedll} -%{_libdir}/wine/tapi32.%{winedll} -%{_libdir}/wine/taskkill.%{wineexe} -%{_libdir}/wine/taskschd.%{winedll} -%{_libdir}/wine/tdh.%{winedll} -%{_libdir}/wine/tdi.%{winesys} -%{_libdir}/wine/traffic.%{winedll} -%{_libdir}/wine/tzres.%{winedll} -%{_libdir}/wine/ucrtbase.so -%{_libdir}/wine/ucrtbase.%{winedll} +%{_libdir}/wine/%{winepedir}/srvcli.%{winedll} +%endif +%{_libdir}/wine/%{winepedir}/sspicli.%{winedll} +%{_libdir}/wine/%{winepedir}/stdole2.%{winetlb} +%{_libdir}/wine/%{winepedir}/stdole32.%{winetlb} +%{_libdir}/wine/%{winepedir}/sti.%{winedll} +%{_libdir}/wine/%{winepedir}/strmdll.%{winedll} +%{_libdir}/wine/%{winepedir}/subst.%{wineexe} +%{_libdir}/wine/%{winepedir}/svchost.%{wineexe} +%{_libdir}/wine/%{winepedir}/svrapi.%{winedll} +%{_libdir}/wine/%{winepedir}/sxs.%{winedll} +%{_libdir}/wine/%{winepedir}/systeminfo.%{wineexe} +%{_libdir}/wine/%{winepedir}/t2embed.%{winedll} +%{_libdir}/wine/%{winepedir}/tapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/taskkill.%{wineexe} +%{_libdir}/wine/%{winepedir}/taskschd.%{winedll} +%{_libdir}/wine/%{winepedir}/tdh.%{winedll} +%{_libdir}/wine/%{winepedir}/tdi.%{winesys} +%{_libdir}/wine/%{winepedir}/traffic.%{winedll} +%{_libdir}/wine/%{winepedir}/tzres.%{winedll} +%{_libdir}/wine/%{winesodir}/ucrtbase.so +%{_libdir}/wine/%{winepedir}/ucrtbase.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/uianimation.%{winedll} -%endif -%{_libdir}/wine/uiautomationcore.%{winedll} -%{_libdir}/wine/uiribbon.%{winedll} -%{_libdir}/wine/unicows.%{winedll} -%{_libdir}/wine/unlodctr.%{wineexe} -%{_libdir}/wine/updspapi.%{winedll} -%{_libdir}/wine/url.%{winedll} -%{_libdir}/wine/urlmon.%{winedll} -%{_libdir}/wine/usbd.%{winesys} -%{_libdir}/wine/user32.so -%{_libdir}/wine/user32.%{winedll} -%{_libdir}/wine/usp10.%{winedll} -%{_libdir}/wine/utildll.%{winedll} -%{_libdir}/wine/uxtheme.%{winedll} -%{_libdir}/wine/userenv.%{winedll} -%{_libdir}/wine/vbscript.%{winedll} -%{_libdir}/wine/vcomp.%{winedll} -%{_libdir}/wine/vcomp90.%{winedll} -%{_libdir}/wine/vcomp100.%{winedll} -%{_libdir}/wine/vcomp110.%{winedll} -%{_libdir}/wine/vcomp120.%{winedll} -%{_libdir}/wine/vcomp140.%{winedll} -%{_libdir}/wine/vcruntime140.%{winedll} -%{_libdir}/wine/vcruntime140_1.%{winedll} -%{_libdir}/wine/vdmdbg.%{winedll} -%{_libdir}/wine/version.%{winedll} -%{_libdir}/wine/vga.%{winedll} -%{_libdir}/wine/virtdisk.%{winedll} -%{_libdir}/wine/vssapi.%{winedll} -%{_libdir}/wine/vulkan-1.%{winedll} -%{_libdir}/wine/wbemdisp.%{winedll} -%{_libdir}/wine/wbemprox.%{winedll} -%{_libdir}/wine/wdscore.%{winedll} -%{_libdir}/wine/webservices.%{winedll} -%{_libdir}/wine/websocket.%{winedll} -%{_libdir}/wine/wer.%{winedll} -%{_libdir}/wine/wevtapi.%{winedll} -%{_libdir}/wine/wevtsvc.%{winedll} -%{_libdir}/wine/wiaservc.%{winedll} -%{_libdir}/wine/wimgapi.%{winedll} -%{_libdir}/wine/win32k.%{winesys} +%{_libdir}/wine/%{winepedir}/uianimation.%{winedll} +%endif +%{_libdir}/wine/%{winepedir}/uiautomationcore.%{winedll} +%{_libdir}/wine/%{winepedir}/uiribbon.%{winedll} +%{_libdir}/wine/%{winepedir}/unicows.%{winedll} +%{_libdir}/wine/%{winepedir}/unlodctr.%{wineexe} +%{_libdir}/wine/%{winepedir}/updspapi.%{winedll} +%{_libdir}/wine/%{winepedir}/url.%{winedll} +%{_libdir}/wine/%{winepedir}/urlmon.%{winedll} +%{_libdir}/wine/%{winepedir}/usbd.%{winesys} +%{_libdir}/wine/%{winesodir}/user32.so +%{_libdir}/wine/%{winepedir}/user32.%{winedll} +%{_libdir}/wine/%{winepedir}/usp10.%{winedll} +%{_libdir}/wine/%{winepedir}/utildll.%{winedll} +%{_libdir}/wine/%{winepedir}/uxtheme.%{winedll} +%{_libdir}/wine/%{winepedir}/userenv.%{winedll} +%{_libdir}/wine/%{winepedir}/vbscript.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp90.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp100.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp110.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp120.%{winedll} +%{_libdir}/wine/%{winepedir}/vcomp140.%{winedll} +%{_libdir}/wine/%{winepedir}/vcruntime140.%{winedll} +%{_libdir}/wine/%{winepedir}/vcruntime140_1.%{winedll} +%{_libdir}/wine/%{winepedir}/vdmdbg.%{winedll} +%{_libdir}/wine/%{winepedir}/version.%{winedll} +%{_libdir}/wine/%{winepedir}/vga.%{winedll} +%{_libdir}/wine/%{winepedir}/virtdisk.%{winedll} +%{_libdir}/wine/%{winepedir}/vssapi.%{winedll} +%{_libdir}/wine/%{winepedir}/vulkan-1.%{winedll} +%{_libdir}/wine/%{winepedir}/wbemdisp.%{winedll} +%{_libdir}/wine/%{winepedir}/wbemprox.%{winedll} +%{_libdir}/wine/%{winepedir}/wdscore.%{winedll} +%{_libdir}/wine/%{winepedir}/webservices.%{winedll} +%{_libdir}/wine/%{winepedir}/websocket.%{winedll} +%{_libdir}/wine/%{winepedir}/wer.%{winedll} +%{_libdir}/wine/%{winepedir}/wevtapi.%{winedll} +%{_libdir}/wine/%{winepedir}/wevtsvc.%{winedll} +%{_libdir}/wine/%{winepedir}/wiaservc.%{winedll} +%{_libdir}/wine/%{winepedir}/wimgapi.%{winedll} +%{_libdir}/wine/%{winepedir}/win32k.%{winesys} %if 0%{?wine_staging} -%{_libdir}/wine/windows.gaming.input.%{winedll} -%{_libdir}/wine/windows.globalization.%{winedll} -%{_libdir}/wine/windows.media.speech.%{winedll} -%endif -%{_libdir}/wine/windows.media.devices.%{winedll} -%{_libdir}/wine/windowscodecs.%{winedll} -%{_libdir}/wine/windowscodecs.so -%{_libdir}/wine/windowscodecsext.%{winedll} -%{_libdir}/wine/winebus.sys.so -%{_libdir}/wine/winegstreamer.so -%{_libdir}/wine/winegstreamer.%{winedll} -%{_libdir}/wine/winehid.%{winesys} -%{_libdir}/wine/winejoystick.drv.so -%{_libdir}/wine/winemapi.%{winedll} -%{_libdir}/wine/wineusb.sys.so -%{_libdir}/wine/winevulkan.so -%{_libdir}/wine/winevulkan.%{winedll} -%{_libdir}/wine/winex11.drv.so -%{_libdir}/wine/wing32.%{winedll} -%{_libdir}/wine/winhttp.%{winedll} -%{_libdir}/wine/wininet.%{winedll} -%{_libdir}/wine/winmm.%{winedll} -%{_libdir}/wine/winnls32.%{winedll} -%{_libdir}/wine/winspool.drv.so -%{_libdir}/wine/winsta.%{winedll} -%{_libdir}/wine/wmasf.%{winedll} -%{_libdir}/wine/wmi.%{winedll} -%{_libdir}/wine/wmic.%{wineexe} -%{_libdir}/wine/wmiutils.%{winedll} -%{_libdir}/wine/wmp.%{winedll} -%{_libdir}/wine/wmvcore.%{winedll} -%{_libdir}/wine/spoolss.%{winedll} -%{_libdir}/wine/winscard.%{winedll} -%{_libdir}/wine/wintab32.%{winedll} -%{_libdir}/wine/wintrust.%{winedll} -%{_libdir}/wine/winusb.%{winedll} -%{_libdir}/wine/wlanapi.%{winedll} -%{_libdir}/wine/wlanui.%{winedll} -%{_libdir}/wine/wmphoto.so -%{_libdir}/wine/wmphoto.%{winedll} -%{_libdir}/wine/wnaspi32.dll.so +%{_libdir}/wine/%{winepedir}/windows.gaming.input.%{winedll} +%{_libdir}/wine/%{winepedir}/windows.globalization.%{winedll} +%{_libdir}/wine/%{winepedir}/windows.media.speech.%{winedll} +%endif +%{_libdir}/wine/%{winepedir}/windows.media.devices.%{winedll} +%{_libdir}/wine/%{winepedir}/windowscodecs.%{winedll} +%{_libdir}/wine/%{winesodir}/windowscodecs.so +%{_libdir}/wine/%{winepedir}/windowscodecsext.%{winedll} +%{_libdir}/wine/%{winepedir}/winebus.%{winesys} +%{_libdir}/wine/%{winesodir}/winebus.sys.so +%{_libdir}/wine/%{winesodir}/winegstreamer.so +%{_libdir}/wine/%{winepedir}/winegstreamer.%{winedll} +%{_libdir}/wine/%{winepedir}/winehid.%{winesys} +%{_libdir}/wine/%{winepedir}/winejoystick.%{winedrv} +%{_libdir}/wine/%{winesodir}/winejoystick.drv.so +%{_libdir}/wine/%{winepedir}/winemapi.%{winedll} +%{_libdir}/wine/%{winepedir}/wineusb.%{winesys} +%{_libdir}/wine/%{winesodir}/wineusb.sys.so +%{_libdir}/wine/%{winesodir}/winevulkan.so +%{_libdir}/wine/%{winepedir}/winevulkan.%{winedll} +%{_libdir}/wine/%{winepedir}/winex11.%{winedrv} +%{_libdir}/wine/%{winesodir}/winex11.drv.so +%{_libdir}/wine/%{winepedir}/wing32.%{winedll} +%{_libdir}/wine/%{winepedir}/winhttp.%{winedll} +%{_libdir}/wine/%{winepedir}/wininet.%{winedll} +%{_libdir}/wine/%{winepedir}/winmm.%{winedll} +%{_libdir}/wine/%{winepedir}/winnls32.%{winedll} +%{_libdir}/wine/%{winepedir}/winspool.%{winedrv} +%{_libdir}/wine/%{winesodir}/winspool.drv.so +%{_libdir}/wine/%{winepedir}/winsta.%{winedll} +%{_libdir}/wine/%{winepedir}/wmasf.%{winedll} +%{_libdir}/wine/%{winepedir}/wmi.%{winedll} +%{_libdir}/wine/%{winepedir}/wmic.%{wineexe} +%{_libdir}/wine/%{winepedir}/wmiutils.%{winedll} +%{_libdir}/wine/%{winepedir}/wmp.%{winedll} +%{_libdir}/wine/%{winepedir}/wmvcore.%{winedll} +%{_libdir}/wine/%{winepedir}/spoolss.%{winedll} +%{_libdir}/wine/%{winepedir}/winscard.%{winedll} +%{_libdir}/wine/%{winepedir}/wintab32.%{winedll} +%{_libdir}/wine/%{winepedir}/wintrust.%{winedll} +%{_libdir}/wine/%{winepedir}/winusb.%{winedll} +%{_libdir}/wine/%{winepedir}/wlanapi.%{winedll} +%{_libdir}/wine/%{winepedir}/wlanui.%{winedll} +%{_libdir}/wine/%{winesodir}/wmphoto.so +%{_libdir}/wine/%{winepedir}/wmphoto.%{winedll} +%{_libdir}/wine/%{winepedir}/wnaspi32.%{winedll} +%{_libdir}/wine/%{winesodir}/wnaspi32.dll.so %if 0%{?wine_staging} %ifarch x86_64 -%{_libdir}/wine/wow64cpu.%{winedll} -%endif -%endif -%{_libdir}/wine/wpc.%{winedll} -%{_libdir}/wine/wpcap.dll.so -%{_libdir}/wine/ws2_32.dll.so -%{_libdir}/wine/wsdapi.%{winedll} -%{_libdir}/wine/wshom.%{wineocx} -%{_libdir}/wine/wsnmp32.%{winedll} -%{_libdir}/wine/wsock32.%{winedll} -%{_libdir}/wine/wtsapi32.%{winedll} -%{_libdir}/wine/wuapi.%{winedll} -%{_libdir}/wine/wuaueng.%{winedll} +%{_libdir}/wine/%{winepedir}/wow64cpu.%{winedll} +%endif +%endif +%{_libdir}/wine/%{winepedir}/wpc.%{winedll} +%{_libdir}/wine/%{winepedir}/wpcap.%{winedll} +%{_libdir}/wine/%{winesodir}/wpcap.dll.so +%{_libdir}/wine/%{winepedir}/ws2_32.%{winedll} +%{_libdir}/wine/%{winesodir}/ws2_32.dll.so +%{_libdir}/wine/%{winepedir}/wsdapi.%{winedll} +%{_libdir}/wine/%{winepedir}/wshom.%{wineocx} +%{_libdir}/wine/%{winepedir}/wsnmp32.%{winedll} +%{_libdir}/wine/%{winepedir}/wsock32.%{winedll} +%{_libdir}/wine/%{winepedir}/wtsapi32.%{winedll} +%{_libdir}/wine/%{winepedir}/wuapi.%{winedll} +%{_libdir}/wine/%{winepedir}/wuaueng.%{winedll} %if 0%{?wine_staging} -%{_libdir}/wine/wuauserv.%{wineexe} -%endif -%{_libdir}/wine/security.%{winedll} -%{_libdir}/wine/sfc.%{winedll} -%{_libdir}/wine/wineps.%{winedrv} -%{_libdir}/wine/d3d8.%{winedll} -%{_libdir}/wine/d3d8thk.%{winedll} -%ghost %{_libdir}/wine/d3d9.%{winedll} -%{_libdir}/wine/wine-d3d9.%{winedll} -%{_libdir}/wine/opengl32.dll.so -%{_libdir}/wine/wined3d.dll.so -%{_libdir}/wine/dnsapi.%{winedll} -%{_libdir}/wine/dnsapi.so -%{_libdir}/wine/iexplore.%{wineexe} -%{_libdir}/wine/x3daudio1_0.dll.so -%{_libdir}/wine/x3daudio1_1.dll.so -%{_libdir}/wine/x3daudio1_2.dll.so -%{_libdir}/wine/x3daudio1_3.dll.so -%{_libdir}/wine/x3daudio1_4.dll.so -%{_libdir}/wine/x3daudio1_5.dll.so -%{_libdir}/wine/x3daudio1_6.dll.so -%{_libdir}/wine/x3daudio1_7.dll.so +%{_libdir}/wine/%{winepedir}/wuauserv.%{wineexe} +%endif +%{_libdir}/wine/%{winepedir}/security.%{winedll} +%{_libdir}/wine/%{winepedir}/sfc.%{winedll} +%{_libdir}/wine/%{winepedir}/wineps.%{winedrv} +%{_libdir}/wine/%{winepedir}/d3d8.%{winedll} +%{_libdir}/wine/%{winepedir}/d3d8thk.%{winedll} +%ghost %{_libdir}/wine/%{winepedir}/d3d9.%{winedll} +%{_libdir}/wine/%{winepedir}/wine-d3d9.%{winedll} +%{_libdir}/wine/%{winepedir}/opengl32.%{winedll} +%{_libdir}/wine/%{winesodir}/opengl32.dll.so +%{_libdir}/wine/%{winepedir}/wined3d.%{winedll} +%{_libdir}/wine/%{winesodir}/wined3d.dll.so +%{_libdir}/wine/%{winepedir}/dnsapi.%{winedll} +%{_libdir}/wine/%{winesodir}/dnsapi.so +%{_libdir}/wine/%{winepedir}/iexplore.%{wineexe} +%{_libdir}/wine/%{winepedir}/x3daudio1_0.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_0.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_1.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_1.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_2.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_2.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_3.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_3.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_4.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_4.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_5.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_5.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_6.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_6.dll.so +%{_libdir}/wine/%{winepedir}/x3daudio1_7.%{winedll} +%{_libdir}/wine/%{winesodir}/x3daudio1_7.dll.so %if 0%{?wine_staging} -%{_libdir}/wine/xactengine2_0.dll.so -%{_libdir}/wine/xactengine2_4.dll.so -%{_libdir}/wine/xactengine2_7.dll.so -%{_libdir}/wine/xactengine2_9.dll.so -%endif -%{_libdir}/wine/xactengine3_0.dll.so -%{_libdir}/wine/xactengine3_1.dll.so -%{_libdir}/wine/xactengine3_2.dll.so -%{_libdir}/wine/xactengine3_3.dll.so -%{_libdir}/wine/xactengine3_4.dll.so -%{_libdir}/wine/xactengine3_5.dll.so -%{_libdir}/wine/xactengine3_6.dll.so -%{_libdir}/wine/xactengine3_7.dll.so -%{_libdir}/wine/xapofx1_1.dll.so -%{_libdir}/wine/xapofx1_2.dll.so -%{_libdir}/wine/xapofx1_3.dll.so -%{_libdir}/wine/xapofx1_4.dll.so -%{_libdir}/wine/xapofx1_5.dll.so -%{_libdir}/wine/xaudio2_0.dll.so -%{_libdir}/wine/xaudio2_1.dll.so -%{_libdir}/wine/xaudio2_2.dll.so -%{_libdir}/wine/xaudio2_3.dll.so -%{_libdir}/wine/xaudio2_4.dll.so -%{_libdir}/wine/xaudio2_5.dll.so -%{_libdir}/wine/xaudio2_6.dll.so -%{_libdir}/wine/xaudio2_7.dll.so -%{_libdir}/wine/xaudio2_8.dll.so -%{_libdir}/wine/xaudio2_9.dll.so -%{_libdir}/wine/xcopy.%{wineexe} -%{_libdir}/wine/xinput1_1.%{winedll} -%{_libdir}/wine/xinput1_2.%{winedll} -%{_libdir}/wine/xinput1_3.%{winedll} -%{_libdir}/wine/xinput1_4.%{winedll} -%{_libdir}/wine/xinput9_1_0.%{winedll} -%{_libdir}/wine/xmllite.%{winedll} -%{_libdir}/wine/xolehlp.%{winedll} -%{_libdir}/wine/xpsprint.%{winedll} -%{_libdir}/wine/xpssvcs.%{winedll} +%{_libdir}/wine/%{winepedir}/xactengine2_0.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine2_0.dll.so +%{_libdir}/wine/%{winepedir}/xactengine2_4.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine2_4.dll.so +%{_libdir}/wine/%{winepedir}/xactengine2_7.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine2_7.dll.so +%{_libdir}/wine/%{winepedir}/xactengine2_9.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine2_9.dll.so +%endif +%{_libdir}/wine/%{winepedir}/xactengine3_0.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_0.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_1.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_1.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_2.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_2.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_3.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_3.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_4.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_4.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_5.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_5.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_6.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_6.dll.so +%{_libdir}/wine/%{winepedir}/xactengine3_7.%{winedll} +%{_libdir}/wine/%{winesodir}/xactengine3_7.dll.so +%{_libdir}/wine/%{winepedir}/xapofx1_1.%{winedll} +%{_libdir}/wine/%{winesodir}/xapofx1_1.dll.so +%{_libdir}/wine/%{winepedir}/xapofx1_2.%{winedll} +%{_libdir}/wine/%{winesodir}/xapofx1_2.dll.so +%{_libdir}/wine/%{winepedir}/xapofx1_3.%{winedll} +%{_libdir}/wine/%{winesodir}/xapofx1_3.dll.so +%{_libdir}/wine/%{winepedir}/xapofx1_4.%{winedll} +%{_libdir}/wine/%{winesodir}/xapofx1_4.dll.so +%{_libdir}/wine/%{winepedir}/xapofx1_5.%{winedll} +%{_libdir}/wine/%{winesodir}/xapofx1_5.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_0.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_0.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_1.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_1.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_2.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_2.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_3.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_3.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_4.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_4.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_5.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_5.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_6.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_6.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_7.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_7.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_8.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_8.dll.so +%{_libdir}/wine/%{winepedir}/xaudio2_9.%{winedll} +%{_libdir}/wine/%{winesodir}/xaudio2_9.dll.so +%{_libdir}/wine/%{winepedir}/xcopy.%{wineexe} +%{_libdir}/wine/%{winepedir}/xinput1_1.%{winedll} +%{_libdir}/wine/%{winepedir}/xinput1_2.%{winedll} +%{_libdir}/wine/%{winepedir}/xinput1_3.%{winedll} +%{_libdir}/wine/%{winepedir}/xinput1_4.%{winedll} +%{_libdir}/wine/%{winepedir}/xinput9_1_0.%{winedll} +%{_libdir}/wine/%{winepedir}/xmllite.%{winedll} +%{_libdir}/wine/%{winepedir}/xolehlp.%{winedll} +%{_libdir}/wine/%{winepedir}/xpsprint.%{winedll} +%{_libdir}/wine/%{winepedir}/xpssvcs.%{winedll} %if 0%{?wine_staging} %ifarch x86_64 aarch64 -%{_libdir}/wine/nvapi64.%{winedll} -%{_libdir}/wine/nvencodeapi64.dll.so +%{_libdir}/wine/%{winepedir}/nvapi64.%{winedll} +%{_libdir}/wine/%{winepedir}/nvencodeapi64.%{winedll} +%{_libdir}/wine/%{winesodir}/nvencodeapi64.dll.so %else -%{_libdir}/wine/nvapi.%{winedll} -%{_libdir}/wine/nvencodeapi.dll.so +%{_libdir}/wine/%{winepedir}/nvapi.%{winedll} +%{_libdir}/wine/%{winepedir}/nvencodeapi.%{winedll} +%{_libdir}/wine/%{winesodir}/nvencodeapi.dll.so %endif %endif # 16 bit and other non 64bit stuff %ifnarch x86_64 %{arm} aarch64 -%{_libdir}/wine/winevdm.exe.so -%{_libdir}/wine/ifsmgr.vxd -%{_libdir}/wine/mmdevldr.vxd -%{_libdir}/wine/monodebg.vxd -%{_libdir}/wine/rundll.exe16 -%{_libdir}/wine/vdhcp.vxd -%{_libdir}/wine/user.exe16 -%{_libdir}/wine/vmm.vxd -%{_libdir}/wine/vnbt.vxd -%{_libdir}/wine/vnetbios.vxd -%{_libdir}/wine/vtdapi.vxd -%{_libdir}/wine/vwin32.vxd -%{_libdir}/wine/w32skrnl.dll -%{_libdir}/wine/avifile.dll16 -%{_libdir}/wine/comm.drv16 -%{_libdir}/wine/commdlg.dll16 -%{_libdir}/wine/compobj.dll16 -%{_libdir}/wine/ctl3d.dll16 -%{_libdir}/wine/ctl3dv2.dll16 -%{_libdir}/wine/ddeml.dll16 -%{_libdir}/wine/dispdib.dll16 -%{_libdir}/wine/display.drv16 -%{_libdir}/wine/gdi.exe16 -%{_libdir}/wine/imm.dll16 -%{_libdir}/wine/krnl386.exe16 -%{_libdir}/wine/keyboard.drv16 -%{_libdir}/wine/lzexpand.dll16 -%{_libdir}/wine/mmsystem.dll16 -%{_libdir}/wine/mouse.drv16 -%{_libdir}/wine/msacm.dll16 -%{_libdir}/wine/msvideo.dll16 -%{_libdir}/wine/ole2.dll16 -%{_libdir}/wine/ole2conv.dll16 -%{_libdir}/wine/ole2disp.dll16 -%{_libdir}/wine/ole2nls.dll16 -%{_libdir}/wine/ole2prox.dll16 -%{_libdir}/wine/ole2thk.dll16 -%{_libdir}/wine/olecli.dll16 -%{_libdir}/wine/olesvr.dll16 -%{_libdir}/wine/rasapi16.dll16 -%{_libdir}/wine/setupx.dll16 -%{_libdir}/wine/shell.dll16 -%{_libdir}/wine/sound.drv16 -%{_libdir}/wine/storage.dll16 -%{_libdir}/wine/stress.dll16 -%{_libdir}/wine/system.drv16 -%{_libdir}/wine/toolhelp.dll16 -%{_libdir}/wine/twain.dll16 -%{_libdir}/wine/typelib.dll16 -%{_libdir}/wine/ver.dll16 -%{_libdir}/wine/w32sys.dll16 -%{_libdir}/wine/win32s16.dll16 -%{_libdir}/wine/win87em.dll16 -%{_libdir}/wine/winaspi.dll16 -%{_libdir}/wine/windebug.dll16 -%{_libdir}/wine/wineps16.drv16 -%{_libdir}/wine/wing.dll16 -%{_libdir}/wine/winhelp.exe16 -%{_libdir}/wine/winnls.dll16 -%{_libdir}/wine/winoldap.mod16 -%{_libdir}/wine/winsock.dll16 -%{_libdir}/wine/wintab.dll16 -%{_libdir}/wine/wow32.dll +%{_libdir}/wine/%{winepedir}/winevdm.exe +%{_libdir}/wine/%{winesodir}/winevdm.exe.so +%{_libdir}/wine/%{winepedir}/ifsmgr.vxd +%{_libdir}/wine/%{winepedir}/mmdevldr.vxd +%{_libdir}/wine/%{winepedir}/monodebg.vxd +%{_libdir}/wine/%{winepedir}/rundll.exe16 +%{_libdir}/wine/%{winepedir}/vdhcp.vxd +%{_libdir}/wine/%{winepedir}/user.exe16 +%{_libdir}/wine/%{winepedir}/vmm.vxd +%{_libdir}/wine/%{winepedir}/vnbt.vxd +%{_libdir}/wine/%{winepedir}/vnetbios.vxd +%{_libdir}/wine/%{winepedir}/vtdapi.vxd +%{_libdir}/wine/%{winepedir}/vwin32.vxd +%{_libdir}/wine/%{winepedir}/w32skrnl.dll +%{_libdir}/wine/%{winepedir}/avifile.dll16 +%{_libdir}/wine/%{winepedir}/comm.drv16 +%{_libdir}/wine/%{winepedir}/commdlg.dll16 +%{_libdir}/wine/%{winepedir}/compobj.dll16 +%{_libdir}/wine/%{winepedir}/ctl3d.dll16 +%{_libdir}/wine/%{winepedir}/ctl3dv2.dll16 +%{_libdir}/wine/%{winepedir}/ddeml.dll16 +%{_libdir}/wine/%{winepedir}/dispdib.dll16 +%{_libdir}/wine/%{winepedir}/display.drv16 +%{_libdir}/wine/%{winepedir}/gdi.exe16 +%{_libdir}/wine/%{winepedir}/imm.dll16 +%{_libdir}/wine/%{winepedir}/krnl386.exe16 +%{_libdir}/wine/%{winepedir}/keyboard.drv16 +%{_libdir}/wine/%{winepedir}/lzexpand.dll16 +%{_libdir}/wine/%{winepedir}/mmsystem.dll16 +%{_libdir}/wine/%{winepedir}/mouse.drv16 +%{_libdir}/wine/%{winepedir}/msacm.dll16 +%{_libdir}/wine/%{winepedir}/msvideo.dll16 +%{_libdir}/wine/%{winepedir}/ole2.dll16 +%{_libdir}/wine/%{winepedir}/ole2conv.dll16 +%{_libdir}/wine/%{winepedir}/ole2disp.dll16 +%{_libdir}/wine/%{winepedir}/ole2nls.dll16 +%{_libdir}/wine/%{winepedir}/ole2prox.dll16 +%{_libdir}/wine/%{winepedir}/ole2thk.dll16 +%{_libdir}/wine/%{winepedir}/olecli.dll16 +%{_libdir}/wine/%{winepedir}/olesvr.dll16 +%{_libdir}/wine/%{winepedir}/rasapi16.dll16 +%{_libdir}/wine/%{winepedir}/setupx.dll16 +%{_libdir}/wine/%{winepedir}/shell.dll16 +%{_libdir}/wine/%{winepedir}/sound.drv16 +%{_libdir}/wine/%{winepedir}/storage.dll16 +%{_libdir}/wine/%{winepedir}/stress.dll16 +%{_libdir}/wine/%{winepedir}/system.drv16 +%{_libdir}/wine/%{winepedir}/toolhelp.dll16 +%{_libdir}/wine/%{winepedir}/twain.dll16 +%{_libdir}/wine/%{winepedir}/typelib.dll16 +%{_libdir}/wine/%{winepedir}/ver.dll16 +%{_libdir}/wine/%{winepedir}/w32sys.dll16 +%{_libdir}/wine/%{winepedir}/win32s16.dll16 +%{_libdir}/wine/%{winepedir}/win87em.dll16 +%{_libdir}/wine/%{winepedir}/winaspi.dll16 +%{_libdir}/wine/%{winepedir}/windebug.dll16 +%{_libdir}/wine/%{winepedir}/wineps16.drv16 +%{_libdir}/wine/%{winepedir}/wing.dll16 +%{_libdir}/wine/%{winepedir}/winhelp.exe16 +%{_libdir}/wine/%{winepedir}/winnls.dll16 +%{_libdir}/wine/%{winepedir}/winoldap.mod16 +%{_libdir}/wine/%{winepedir}/winsock.dll16 +%{_libdir}/wine/%{winepedir}/wintab.dll16 +%{_libdir}/wine/%{winepedir}/wow32.dll %endif %files filesystem @@ -2377,22 +2447,24 @@ fi # ldap subpackage %files ldap -%{_libdir}/wine/wldap32.so -%{_libdir}/wine/wldap32.%{winedll} +%{_libdir}/wine/%{winesodir}/wldap32.so +%{_libdir}/wine/%{winepedir}/wldap32.%{winedll} # cms subpackage %files cms -%{_libdir}/wine/mscms.so -%{_libdir}/wine/mscms.%{winedll} +%{_libdir}/wine/%{winesodir}/mscms.so +%{_libdir}/wine/%{winepedir}/mscms.%{winedll} # twain subpackage %files twain -%{_libdir}/wine/twain_32.%{winedll} -%{_libdir}/wine/sane.ds.so +%{_libdir}/wine/%{winepedir}/twain_32.%{winedll} +%{_libdir}/wine/%{winepedir}/sane.%{wineds} +%{_libdir}/wine/%{winesodir}/sane.ds.so # capi subpackage %files capi -%{_libdir}/wine/capi2032.dll.so +%{_libdir}/wine/%{winepedir}/capi2032.%{winedll} +%{_libdir}/wine/%{winesodir}/capi2032.dll.so %files devel %{_bindir}/function_grep.pl @@ -2419,27 +2491,34 @@ fi %lang(fr) %{_mandir}/fr.UTF-8/man1/winemaker.1* %attr(0755, root, root) %dir %{_includedir}/wine %{_includedir}/wine/* -%{_libdir}/wine/*.a -%{_libdir}/wine/*.def +%{_libdir}/wine/%{winepedir}/*.a +%{_libdir}/wine/%{winesodir}/*.a +%{_libdir}/wine/%{winesodir}/*.def %files pulseaudio -%{_libdir}/wine/winepulse.drv.so +%{_libdir}/wine/%{winepedir}/winepulse.%{winedrv} +%{_libdir}/wine/%{winesodir}/winepulse.drv.so %files alsa -%{_libdir}/wine/winealsa.drv.so +%{_libdir}/wine/%{winepedir}/winealsa.%{winedrv} +%{_libdir}/wine/%{winesodir}/winealsa.drv.so %if 0%{?fedora} >= 10 || 0%{?rhel} >= 6 %files openal -%{_libdir}/wine/openal32.dll.so +%{_libdir}/wine/%{winepedir}/openal32.%{winedll} +%{_libdir}/wine/%{winesodir}/openal32.dll.so %endif %if 0%{?fedora} %files opencl -%{_libdir}/wine/opencl.%{winedll} -%{_libdir}/wine/opencl.so +%{_libdir}/wine/%{winepedir}/opencl.%{winedll} +%{_libdir}/wine/%{winesodir}/opencl.so %endif %changelog +* Sat May 08 2021 Michael Cronenworth 6.8-1 +- version update + * Sat Apr 24 2021 Michael Cronenworth 6.7-1 - version update