Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F11049371
D3767.id9373.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
21 KB
Referenced Files
None
Subscribers
None
D3767.id9373.diff
View Options
diff --git a/files/d3d9-helper.patch b/files/d3d9-helper.patch
--- a/files/d3d9-helper.patch
+++ b/files/d3d9-helper.patch
@@ -1,6 +1,6 @@
-From 6ccba02d4f144a415394642dcd37a88ed29a40a4 Mon Sep 17 00:00:00 2001
+From 58190cd8c0e5e9cefe55f3a74c5c2fe223eea3eb Mon Sep 17 00:00:00 2001
From: Nick Sarnie <sarnex@gentoo.org>
-Date: Sun, 24 Jun 2018 13:53:50 -0400
+Date: Sun, 2 Sep 2018 10:29:11 -0400
Subject: [PATCH] D3D9 Helper
Signed-off-by: Nick Sarnie <sarnex@gentoo.org>
@@ -18,10 +18,10 @@
create mode 100644 programs/winecfg/staging.c
diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c
-index 3e00ec6314..e026581352 100644
+index 26b2431047..de57f5428b 100644
--- a/dlls/ntdll/loader.c
+++ b/dlls/ntdll/loader.c
-@@ -100,6 +100,7 @@ struct builtin_load_info
+@@ -110,6 +110,7 @@ struct builtin_load_info
{
const WCHAR *load_path;
const WCHAR *filename;
@@ -29,7 +29,7 @@
NTSTATUS status;
WINE_MODREF *wm;
};
-@@ -125,7 +126,8 @@ static WINE_MODREF *cached_modref;
+@@ -135,7 +136,8 @@ static WINE_MODREF *cached_modref;
static WINE_MODREF *current_modref;
static WINE_MODREF *last_failed_modref;
@@ -39,7 +39,7 @@
static NTSTATUS process_attach( WINE_MODREF *wm, LPVOID lpReserved );
static FARPROC find_ordinal_export( HMODULE module, const IMAGE_EXPORT_DIRECTORY *exports,
DWORD exp_size, DWORD ordinal, LPCWSTR load_path );
-@@ -478,7 +480,7 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward, LPCWS
+@@ -511,7 +513,7 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward, LPCWS
if (!(wm = find_basename_module( mod_name )))
{
TRACE( "delay loading %s for '%s'\n", debugstr_w(mod_name), forward );
@@ -48,7 +48,7 @@
!(wm->ldr.Flags & LDR_DONT_RESOLVE_REFS))
{
if (!imports_fixup_done && current_modref)
-@@ -649,7 +651,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP
+@@ -682,7 +684,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP
{
ascii_to_unicode( buffer, name, len );
buffer[len] = 0;
@@ -57,7 +57,7 @@
}
else /* need to allocate a larger buffer */
{
-@@ -657,7 +659,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP
+@@ -690,7 +692,7 @@ static BOOL import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *descr, LP
if (!ptr) return FALSE;
ascii_to_unicode( ptr, name, len );
ptr[len] = 0;
@@ -66,7 +66,7 @@
RtlFreeHeap( GetProcessHeap(), 0, ptr );
}
-@@ -943,7 +945,7 @@ static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path, void *
+@@ -976,7 +978,7 @@ static NTSTATUS fixup_imports_ilonly( WINE_MODREF *wm, LPCWSTR load_path, void *
prev = current_modref;
current_modref = wm;
@@ -75,7 +75,7 @@
current_modref = prev;
if (status)
{
-@@ -1031,7 +1033,7 @@ static NTSTATUS fixup_imports( WINE_MODREF *wm, LPCWSTR load_path )
+@@ -1064,7 +1066,7 @@ static NTSTATUS fixup_imports( WINE_MODREF *wm, LPCWSTR load_path )
* Allocate a WINE_MODREF structure and add it to the process list
* The loader_section must be locked while calling this function.
*/
@@ -84,7 +84,7 @@
{
WINE_MODREF *wm;
const WCHAR *p;
-@@ -1045,7 +1047,7 @@ static WINE_MODREF *alloc_module( HMODULE hModule, LPCWSTR filename )
+@@ -1078,7 +1080,7 @@ static WINE_MODREF *alloc_module( HMODULE hModule, LPCWSTR filename )
wm->ldr.TlsIndex = -1;
wm->ldr.LoadCount = 1;
@@ -93,7 +93,7 @@
if ((p = strrchrW( wm->ldr.FullDllName.Buffer, '\\' ))) p++;
else p = wm->ldr.FullDllName.Buffer;
RtlInitUnicodeString( &wm->ldr.BaseDllName, p );
-@@ -1676,7 +1678,7 @@ static void load_builtin_callback( void *module, const char *filename )
+@@ -1745,7 +1747,7 @@ static void load_builtin_callback( void *module, const char *filename )
return;
}
@@ -102,7 +102,7 @@
RtlFreeHeap( GetProcessHeap(), 0, fullname );
if (!wm)
{
-@@ -1886,8 +1888,8 @@ static BOOL is_valid_binary( HMODULE module, const pe_image_info_t *info )
+@@ -1955,8 +1957,8 @@ static BOOL is_valid_binary( HMODULE module, const pe_image_info_t *info )
/******************************************************************************
* load_native_dll (internal)
*/
@@ -113,7 +113,7 @@
{
void *module;
HANDLE mapping;
-@@ -1930,7 +1932,7 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file,
+@@ -1999,7 +2001,7 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file,
/* create the MODREF */
@@ -122,7 +122,7 @@
{
if (module) NtUnmapViewOfSection( NtCurrentProcess(), module );
return STATUS_NO_MEMORY;
-@@ -1998,8 +2000,8 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file,
+@@ -2067,8 +2069,8 @@ static NTSTATUS load_native_dll( LPCWSTR load_path, LPCWSTR name, HANDLE file,
/***********************************************************************
* load_builtin_dll
*/
@@ -133,7 +133,7 @@
{
char error[256], dllname[MAX_PATH];
const WCHAR *name, *p;
-@@ -2019,6 +2021,7 @@ static NTSTATUS load_builtin_dll( LPCWSTR load_path, LPCWSTR path, HANDLE file,
+@@ -2088,6 +2090,7 @@ static NTSTATUS load_builtin_dll( LPCWSTR load_path, LPCWSTR path, HANDLE file,
*/
info.load_path = load_path;
info.filename = NULL;
@@ -141,7 +141,7 @@
info.status = STATUS_SUCCESS;
info.wm = NULL;
-@@ -2217,6 +2220,108 @@ done:
+@@ -2286,6 +2289,108 @@ done:
return status;
}
@@ -250,7 +250,7 @@
/***********************************************************************
* open_dll_file
-@@ -2263,7 +2368,7 @@ static HANDLE open_dll_file( UNICODE_STRING *nt_name, WINE_MODREF **pwm, struct
+@@ -2332,7 +2437,7 @@ static HANDLE open_dll_file( UNICODE_STRING *nt_name, WINE_MODREF **pwm, struct
*/
static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname,
WCHAR *filename, ULONG *size, WINE_MODREF **pwm,
@@ -259,7 +259,7 @@
{
UNICODE_STRING nt_name;
WCHAR *file_part, *ext, *dllname;
-@@ -2308,20 +2413,41 @@ static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname,
+@@ -2377,20 +2482,41 @@ static NTSTATUS find_dll_file( const WCHAR *load_path, const WCHAR *libname,
if (RtlDetermineDosPathNameType_U( libname ) == RELATIVE_PATH)
{
@@ -305,7 +305,7 @@
}
/* not found */
-@@ -2369,8 +2495,10 @@ overflow:
+@@ -2438,8 +2564,10 @@ overflow:
* Load a PE style module according to the load order.
* The loader_section must be locked while calling this function.
*/
@@ -317,7 +317,7 @@
enum loadorder loadorder;
WCHAR buffer[64];
WCHAR *filename;
-@@ -2387,7 +2515,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
+@@ -2456,7 +2584,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
size = sizeof(buffer);
for (;;)
{
@@ -326,7 +326,7 @@
if (nts == STATUS_SUCCESS) break;
if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
if (nts != STATUS_BUFFER_TOO_SMALL) return nts;
-@@ -2407,6 +2535,25 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
+@@ -2476,6 +2604,25 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
}
main_exe = get_modref( NtCurrentTeb()->Peb->ImageBaseAddress );
@@ -352,7 +352,7 @@
loadorder = get_load_order( main_exe ? main_exe->ldr.BaseDllName.Buffer : NULL, filename );
if (handle && is_fake_dll( handle ))
-@@ -2429,22 +2576,22 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
+@@ -2498,22 +2645,22 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
if (!handle) nts = STATUS_DLL_NOT_FOUND;
else
{
@@ -380,7 +380,7 @@
if (nts == STATUS_SUCCESS && loadorder == LO_DEFAULT &&
(MODULE_InitDLL( *pwm, DLL_WINE_PREATTACH, NULL ) != STATUS_SUCCESS))
{
-@@ -2454,7 +2601,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
+@@ -2523,7 +2670,7 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
nts = STATUS_DLL_NOT_FOUND;
}
if (nts == STATUS_DLL_NOT_FOUND && loadorder != LO_BUILTIN)
@@ -389,7 +389,7 @@
break;
}
-@@ -2487,7 +2634,7 @@ NTSTATUS WINAPI DECLSPEC_HOTPATCH LdrLoadDll(LPCWSTR path_name, DWORD flags,
+@@ -2556,7 +2703,7 @@ NTSTATUS WINAPI DECLSPEC_HOTPATCH LdrLoadDll(LPCWSTR path_name, DWORD flags,
RtlEnterCriticalSection( &loader_section );
if (!path_name) path_name = NtCurrentTeb()->Peb->ProcessParameters->DllPath.Buffer;
@@ -398,7 +398,7 @@
if (nts == STATUS_SUCCESS && !(wm->ldr.Flags & LDR_DONT_RESOLVE_REFS))
{
-@@ -2526,7 +2673,7 @@ NTSTATUS WINAPI LdrGetDllHandle( LPCWSTR load_path, ULONG flags, const UNICODE_S
+@@ -2595,7 +2742,7 @@ NTSTATUS WINAPI LdrGetDllHandle( LPCWSTR load_path, ULONG flags, const UNICODE_S
size = sizeof(buffer);
for (;;)
{
@@ -407,7 +407,7 @@
if (handle) NtClose( handle );
if (filename != buffer) RtlFreeHeap( GetProcessHeap(), 0, filename );
if (status != STATUS_BUFFER_TOO_SMALL) break;
-@@ -3448,7 +3595,7 @@ void __wine_process_init(void)
+@@ -3517,7 +3664,7 @@ void __wine_process_init(void)
/* setup the load callback and create ntdll modref */
wine_dll_set_callback( load_builtin_callback );
@@ -859,7 +859,7 @@
* Fill out the (General) PROPSHEETPAGE data structure
* for the property sheet
diff --git a/programs/winecfg/resource.h b/programs/winecfg/resource.h
-index 0c0b038ff9..f0e370ecd6 100644
+index 2760e92c00..0584422ab5 100644
--- a/programs/winecfg/resource.h
+++ b/programs/winecfg/resource.h
@@ -45,6 +45,7 @@
@@ -878,7 +878,7 @@
#define IDC_WINVER 1012
#define IDC_DESKTOP_WIDTH 1023
#define IDC_DESKTOP_HEIGHT 1024
-@@ -218,3 +220,6 @@
+@@ -219,3 +221,6 @@
#define IDC_ABT_TITLE_TEXT 8436
#define IDC_ABT_WEB_LINK 8437
#define IDC_ABT_LICENSE_TEXT 8438
@@ -985,10 +985,10 @@
+ return FALSE;
+}
diff --git a/programs/winecfg/winecfg.h b/programs/winecfg/winecfg.h
-index f2c24a2012..bbe60e4c5c 100644
+index 110856a536..a94947439c 100644
--- a/programs/winecfg/winecfg.h
+++ b/programs/winecfg/winecfg.h
-@@ -89,6 +89,7 @@ INT_PTR CALLBACK AppDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+@@ -87,6 +87,7 @@ INT_PTR CALLBACK AppDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
INT_PTR CALLBACK LibrariesDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK AudioDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK ThemeDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
@@ -997,7 +997,7 @@
/* Drive management */
diff --git a/programs/winecfg/winecfg.rc b/programs/winecfg/winecfg.rc
-index 5908b491d4..a2da7e6b3a 100644
+index 33f54d43b2..d12522e758 100644
--- a/programs/winecfg/winecfg.rc
+++ b/programs/winecfg/winecfg.rc
@@ -39,6 +39,7 @@ BEGIN
@@ -1008,7 +1008,7 @@
IDS_TAB_ABOUT "About"
IDS_WINECFG_TITLE "Wine configuration"
IDS_WINECFG_TITLE_APP "Wine configuration for %s"
-@@ -308,6 +309,15 @@ BEGIN
+@@ -312,6 +313,15 @@ BEGIN
PUSHBUTTON "B&rowse...",IDC_BROWSE_SFPATH,195,195,50,13,WS_DISABLED
END
diff --git a/files/wine-d3d9.patch b/files/wine-d3d9.patch
--- a/files/wine-d3d9.patch
+++ b/files/wine-d3d9.patch
@@ -1,6 +1,6 @@
-From b735ed6c096569575dd0c62aeeeb2a6bb6979339 Mon Sep 17 00:00:00 2001
+From 3e70b20d568b404f09415c70375c1bcf9e633878 Mon Sep 17 00:00:00 2001
From: Nick Sarnie <sarnex@gentoo.org>
-Date: Sun, 24 Jun 2018 13:53:17 -0400
+Date: Sun, 2 Sep 2018 10:28:41 -0400
Subject: [PATCH] Wine D3D9
Signed-off-by: Nick Sarnie <sarnex@gentoo.org>
@@ -41,10 +41,10 @@
create mode 100644 dlls/d3d9-nine/wndproc.h
diff --git a/configure.ac b/configure.ac
-index e8dc9f2694..4a29c72224 100644
+index 39185e3dae..3dd1436868 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -69,6 +69,14 @@ AC_ARG_WITH(openal, AS_HELP_STRING([--without-openal],[do not use OpenAL]),
+@@ -70,6 +70,14 @@ AC_ARG_WITH(openal, AS_HELP_STRING([--without-openal],[do not use OpenAL]),
AC_ARG_WITH(opencl, AS_HELP_STRING([--without-opencl],[do not use OpenCL]),
[if test "x$withval" = "xno"; then ac_cv_header_CL_cl_h=no; ac_cv_header_OpenCL_opencl_h=no; fi])
AC_ARG_WITH(opengl, AS_HELP_STRING([--without-opengl],[do not use OpenGL]))
@@ -59,7 +59,7 @@
AC_ARG_WITH(osmesa, AS_HELP_STRING([--without-osmesa],[do not use the OSMesa library]))
AC_ARG_WITH(oss, AS_HELP_STRING([--without-oss],[do not use the OSS sound support]))
AC_ARG_WITH(pcap, AS_HELP_STRING([--without-pcap],[do not use the Packet Capture library]),
-@@ -423,6 +431,8 @@ AC_CHECK_LIB(ossaudio,_oss_ioctl)
+@@ -424,6 +432,8 @@ AC_CHECK_LIB(ossaudio,_oss_ioctl)
AC_SUBST(OPENGL_LIBS,"")
@@ -68,7 +68,7 @@
dnl **** Check for header files ****
AC_SYS_LARGEFILE()
-@@ -1269,6 +1279,183 @@ OpenGL and Direct3D won't be supported.])
+@@ -1276,6 +1286,183 @@ OpenGL and Direct3D won't be supported.])
WINE_NOTICE_WITH(va,[test "x$ac_cv_lib_soname_va" = "x" -o "x$ac_cv_lib_soname_va_x11" = "x" -o "x$ac_cv_lib_soname_va_drm" = "x"],
[libva ${notice_platform}development files not found, GPU video acceleration won't be supported.])
@@ -252,7 +252,7 @@
CPPFLAGS="$ac_save_CPPFLAGS"
else
X_CFLAGS=""
-@@ -3216,6 +3403,7 @@ WINE_CONFIG_MAKEFILE(dlls/d3d8)
+@@ -3260,6 +3447,7 @@ WINE_CONFIG_MAKEFILE(dlls/d3d8)
WINE_CONFIG_MAKEFILE(dlls/d3d8/tests)
WINE_CONFIG_MAKEFILE(dlls/d3d9)
WINE_CONFIG_MAKEFILE(dlls/d3d9/tests)
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : wine
-version : '3.14'
-release : 47
+version : '3.15'
+release : 48
source :
- - https://github.com/wine-mirror/wine/archive/wine-3.14.tar.gz : 3cb739a07939e48cf949c70f0f351fde5814529688594de0ba839cecd73ee07e
+ - https://github.com/wine-mirror/wine/archive/wine-3.15.tar.gz : c5d38a093077d40fdb1d916b340073511da6fdc05f49e0883479f9c2ccdb0352
license : LGPL-2.1-or-later
component : virt
summary : Wine compatibility layer for Windows emulation
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -1069,6 +1069,7 @@
<Path fileType="library">/usr/lib64/wine/fakedlls/olesvr32.dll</Path>
<Path fileType="library">/usr/lib64/wine/fakedlls/olethk32.dll</Path>
<Path fileType="library">/usr/lib64/wine/fakedlls/oleview.exe</Path>
+ <Path fileType="library">/usr/lib64/wine/fakedlls/opcservices.dll</Path>
<Path fileType="library">/usr/lib64/wine/fakedlls/openal32.dll</Path>
<Path fileType="library">/usr/lib64/wine/fakedlls/opencl.dll</Path>
<Path fileType="library">/usr/lib64/wine/fakedlls/opengl32.dll</Path>
@@ -1407,7 +1408,7 @@
<Path fileType="library">/usr/lib64/wine/libdciman32.def</Path>
<Path fileType="library">/usr/lib64/wine/libddraw.def</Path>
<Path fileType="library">/usr/lib64/wine/libdinput.a</Path>
- <Path fileType="library">/usr/lib64/wine/libdinput8.def</Path>
+ <Path fileType="library">/usr/lib64/wine/libdinput8.a</Path>
<Path fileType="library">/usr/lib64/wine/libdmoguids.a</Path>
<Path fileType="library">/usr/lib64/wine/libdnsapi.def</Path>
<Path fileType="library">/usr/lib64/wine/libdplayx.def</Path>
@@ -1682,6 +1683,7 @@
<Path fileType="library">/usr/lib64/wine/olesvr32.dll.so</Path>
<Path fileType="library">/usr/lib64/wine/olethk32.dll.so</Path>
<Path fileType="library">/usr/lib64/wine/oleview.exe.so</Path>
+ <Path fileType="library">/usr/lib64/wine/opcservices.dll.so</Path>
<Path fileType="library">/usr/lib64/wine/openal32.dll.so</Path>
<Path fileType="library">/usr/lib64/wine/opencl.dll.so</Path>
<Path fileType="library">/usr/lib64/wine/opengl32.dll.so</Path>
@@ -2013,7 +2015,7 @@
</Description>
<PartOf>emul32</PartOf>
<RuntimeDependencies>
- <Dependency release="47">wine</Dependency>
+ <Dependency release="48">wine</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/wine</Path>
@@ -3079,6 +3081,7 @@
<Path fileType="library">/usr/lib32/wine/fakedlls/olesvr32.dll</Path>
<Path fileType="library">/usr/lib32/wine/fakedlls/olethk32.dll</Path>
<Path fileType="library">/usr/lib32/wine/fakedlls/oleview.exe</Path>
+ <Path fileType="library">/usr/lib32/wine/fakedlls/opcservices.dll</Path>
<Path fileType="library">/usr/lib32/wine/fakedlls/openal32.dll</Path>
<Path fileType="library">/usr/lib32/wine/fakedlls/opencl.dll</Path>
<Path fileType="library">/usr/lib32/wine/fakedlls/opengl32.dll</Path>
@@ -3456,7 +3459,7 @@
<Path fileType="library">/usr/lib32/wine/libdciman32.def</Path>
<Path fileType="library">/usr/lib32/wine/libddraw.def</Path>
<Path fileType="library">/usr/lib32/wine/libdinput.a</Path>
- <Path fileType="library">/usr/lib32/wine/libdinput8.def</Path>
+ <Path fileType="library">/usr/lib32/wine/libdinput8.a</Path>
<Path fileType="library">/usr/lib32/wine/libdmoguids.a</Path>
<Path fileType="library">/usr/lib32/wine/libdnsapi.def</Path>
<Path fileType="library">/usr/lib32/wine/libdplayx.def</Path>
@@ -3748,6 +3751,7 @@
<Path fileType="library">/usr/lib32/wine/olesvr32.dll.so</Path>
<Path fileType="library">/usr/lib32/wine/olethk32.dll.so</Path>
<Path fileType="library">/usr/lib32/wine/oleview.exe.so</Path>
+ <Path fileType="library">/usr/lib32/wine/opcservices.dll.so</Path>
<Path fileType="library">/usr/lib32/wine/openal32.dll.so</Path>
<Path fileType="library">/usr/lib32/wine/opencl.dll.so</Path>
<Path fileType="library">/usr/lib32/wine/opengl32.dll.so</Path>
@@ -4026,8 +4030,8 @@
</Description>
<PartOf>programming.devel</PartOf>
<RuntimeDependencies>
- <Dependency release="47">wine-32bit</Dependency>
- <Dependency release="47">wine-devel</Dependency>
+ <Dependency release="48">wine-32bit</Dependency>
+ <Dependency release="48">wine-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/libwine.so</Path>
@@ -4040,7 +4044,7 @@
</Description>
<PartOf>programming.devel</PartOf>
<RuntimeDependencies>
- <Dependency release="47">wine</Dependency>
+ <Dependency release="48">wine</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/wine/debug.h</Path>
@@ -4597,6 +4601,8 @@
<Path fileType="header">/usr/include/wine/windows/msinkaut.h</Path>
<Path fileType="header">/usr/include/wine/windows/msinkaut.idl</Path>
<Path fileType="header">/usr/include/wine/windows/msiquery.h</Path>
+ <Path fileType="header">/usr/include/wine/windows/msopc.h</Path>
+ <Path fileType="header">/usr/include/wine/windows/msopc.idl</Path>
<Path fileType="header">/usr/include/wine/windows/mssip.h</Path>
<Path fileType="header">/usr/include/wine/windows/msstkppg.h</Path>
<Path fileType="header">/usr/include/wine/windows/mstask.h</Path>
@@ -4668,6 +4674,9 @@
<Path fileType="header">/usr/include/wine/windows/oledlg.h</Path>
<Path fileType="header">/usr/include/wine/windows/oleidl.h</Path>
<Path fileType="header">/usr/include/wine/windows/oleidl.idl</Path>
+ <Path fileType="header">/usr/include/wine/windows/opcbase.idl</Path>
+ <Path fileType="header">/usr/include/wine/windows/opcobjectmodel.idl</Path>
+ <Path fileType="header">/usr/include/wine/windows/opcparturi.idl</Path>
<Path fileType="header">/usr/include/wine/windows/opnrst.idl</Path>
<Path fileType="header">/usr/include/wine/windows/optary.h</Path>
<Path fileType="header">/usr/include/wine/windows/optary.idl</Path>
@@ -4733,6 +4742,7 @@
<Path fileType="header">/usr/include/wine/windows/rstloc.idl</Path>
<Path fileType="header">/usr/include/wine/windows/rstnot.idl</Path>
<Path fileType="header">/usr/include/wine/windows/rtutils.h</Path>
+ <Path fileType="header">/usr/include/wine/windows/sal.h</Path>
<Path fileType="header">/usr/include/wine/windows/sapi.h</Path>
<Path fileType="header">/usr/include/wine/windows/sapi.idl</Path>
<Path fileType="header">/usr/include/wine/windows/sapiddk.h</Path>
@@ -4979,12 +4989,12 @@
</Files>
</Package>
<History>
- <Update release="47">
- <Date>2018-08-17</Date>
- <Version>3.14</Version>
+ <Update release="48">
+ <Date>2018-09-03</Date>
+ <Version>3.15</Version>
<Comment>Packaging update</Comment>
<Name>Pierre-Yves</Name>
<Email>pyu@riseup.net</Email>
</Update>
</History>
</PISI>
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Aug 11, 5:40 PM (2 h, 46 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5872665
Default Alt Text
D3767.id9373.diff (21 KB)
Attached To
Mode
D3767: Update wine to 3.16
Attached
Detach File
Event Timeline
Log In to Comment