You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Added patch to output winedbg system information also to the terminal, not only to dialog.
This commit is contained in:
@@ -261,6 +261,7 @@ patch_enable_all ()
|
||||
enable_wined3d_UnhandledBlendFactor="$1"
|
||||
enable_wined3d_resource_check_usage="$1"
|
||||
enable_wined3d_wined3d_swapchain_present="$1"
|
||||
enable_winedbg_SystemInfo="$1"
|
||||
enable_winedevice_Fix_Relocation="$1"
|
||||
enable_winemenubuilder_Desktop_Icon_Path="$1"
|
||||
enable_winepulse_PulseAudio_Support="$1"
|
||||
@@ -848,6 +849,9 @@ patch_enable ()
|
||||
wined3d-wined3d_swapchain_present)
|
||||
enable_wined3d_wined3d_swapchain_present="$2"
|
||||
;;
|
||||
winedbg-SystemInfo)
|
||||
enable_winedbg_SystemInfo="$2"
|
||||
;;
|
||||
winedevice-Fix_Relocation)
|
||||
enable_winedevice_Fix_Relocation="$2"
|
||||
;;
|
||||
@@ -5399,6 +5403,18 @@ if test "$enable_wineconsole_Insert_Mode" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset winedbg-SystemInfo
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * programs/winedbg/tgt_active.c
|
||||
# |
|
||||
if test "$enable_winedbg_SystemInfo" -eq 1; then
|
||||
patch_apply winedbg-SystemInfo/0001-winedbg-Also-output-system-information-to-the-termin.patch
|
||||
(
|
||||
echo '+ { "Sebastian Lackner", "winedbg: Also output system information to the terminal, not only to dialog.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset winedevice-Fix_Relocation
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
From 2fde182ba17d4ff0672f94038cb59ad1d4839867 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Sat, 30 May 2015 01:25:47 +0200
|
||||
Subject: winedbg: Also output system information to the terminal, not only to
|
||||
dialog.
|
||||
|
||||
---
|
||||
programs/winedbg/tgt_active.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/programs/winedbg/tgt_active.c b/programs/winedbg/tgt_active.c
|
||||
index 8cfce32..989e433 100644
|
||||
--- a/programs/winedbg/tgt_active.c
|
||||
+++ b/programs/winedbg/tgt_active.c
|
||||
@@ -836,10 +836,10 @@ enum dbg_start dbg_active_auto(int argc, char* argv[])
|
||||
|
||||
dbg_interactiveP = TRUE;
|
||||
parser_handle(input);
|
||||
+ output_system_info();
|
||||
|
||||
if (output != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
- output_system_info();
|
||||
SetEvent( event );
|
||||
WaitForSingleObject( thread, INFINITE );
|
||||
CloseHandle( output );
|
||||
--
|
||||
2.4.2
|
||||
|
||||
1
patches/winedbg-SystemInfo/definition
Normal file
1
patches/winedbg-SystemInfo/definition
Normal file
@@ -0,0 +1 @@
|
||||
Fixes: Also output winedbg system information to the terminal, not only to dialog
|
||||
Reference in New Issue
Block a user