https://bugs.winehq.org/show_bug.cgi?id=39848
Bug ID: 39848
Summary: Can't launch Victoria 2 from steam
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
1. winetricks steam
2. cd "~/.wine/drive_c/Program Files/Steam"
wine Steam
3. Log in, download Victoria 2
4. Run Victoria 2, it just crashed before meeting Bug 35163
If I type
cd "~/.wine/drive_c/Program Files/Steam/steamapps/common/Victoria 2"
Then run wine v2game.exe, the game will launch, then hit bug 35163
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=16734
Summary: get_ptrace_tid defined but not used on OpenBSD
Product: Wine
Version: 1.1.12
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: trivial
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
ccache gcc -c -I. -I. -I../include -I../include -D__WINESRC__ -Wall -pipe
-fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include -g
-O2 -o ptrace.o ptrace.c
ptrace.c:174: warning: `get_ptrace_tid' defined but not used
There's an '#ifdef linux' on the same code a few lines earlier (in
get_ptrace_tid), which fixes compile here as well:
diff --git a/server/ptrace.c b/server/ptrace.c
index b446de9..92b7db5 100644
--- a/server/ptrace.c
+++ b/server/ptrace.c
@@ -172,7 +172,9 @@ static int get_ptrace_pid( struct thread *thread )
/* return the Unix tid to use in ptrace calls for a given thread */
static int get_ptrace_tid( struct thread *thread )
{
+#ifdef linux
if (thread->unix_tid != -1) return thread->unix_tid;
+#endif
return thread->unix_pid;
}
but I'm not sure if that's right or not. Comments welcome.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33408
Bug #: 33408
Summary: CAJViewer 7.2 needs MDAC while installing
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. download and type $wine 'CAJViewer 7.2.self.exe'
1. just click Next
2. Before the installation finished, the installer reportered that MDAC 2.8 is
needed, but I closed that dialog, and the installation finished successfully.
3. I don't know if it has more influnce than an annoying dialog.
winetricks mdac28 to workaround it.
By the way, this bug doesn't block bug 33404
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30222
Bug #: 30222
Summary: Symantec VIP Access can not be activated - take 2
Product: Wine
Version: 1.5.0
Platform: Other
URL: http://www.symantec.com/products/trialware.jsp?pcid=pc
at_info_risk_comp&pvid=vip_1
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Classification: Unclassified
As a follow-up to bug #29891 , after installing Symantec VIP Access the user is
required to accept a license agreement and activate the program. The activation
is unsuccesful and therefore the program can not be used.
Please note that the 'activation' does not refer to copy protection mechanisms,
but rather to connecting to a server using HTTP and obtaining an initial unique
credential ID.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33190
Bug #: 33190
Summary: Font display problem using text and dc rotation
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ralf.habacker(a)freenet.de
Classification: Unclassified
We recognized an gdi text display issue using the application Gausz
http://appdb.winehq.org/objectManager.php?sClass=application&iId=13649.
The problem appears when gdi text is drawn with font rotation *and* display
context rotation.
The problem do not appear when either font rotation or display context rotation
is zero.
The application uses CreateIndirectFont to set a fixed size font with optional
set rotation and draws the text with TextOut(). The display context rotation
has been set with SetWorldTransform().
We tried to find a test case application, but where not able to reproduce the
problem outside the application. We also tried to debug into wine's code based,
but got lost by the details.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39867
Bug ID: 39867
Summary: Long path components (e.g. 250 character long) crash
open/save dialogs
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: whitequark(a)whitequark.org
Distribution: ---
To reproduce:
1. mkdir
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
2. call GetOpenFileName and navigate to a directory containing the newly
created one
3. Wine is aborted by stack smashing protection
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41996
Bug ID: 41996
Summary: Hitman: Blood Money demo has color issues with
built-in d3dx9_27
Product: Wine
Version: 2.0-rc1
Hardware: x86-64
URL: http://www.gamewatcher.com/downloads/hitman-blood-mone
y-download/hitman-blood-money-demo
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 56417
--> https://bugs.winehq.org/attachment.cgi?id=56417
d3dx
fixme:d3dx:d3dx9_base_effect_get_desc partial stub!
fixme:d3dx:get_format_info Unknown format 0x3c (as FOURCC "<\x00\x00\x00").
wine-2.0-rc1-29-g3c6cbc2
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30919
Bug #: 30919
Summary: [.net 2.0] ListBox items should not display any
newline characters
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danieleds0(a)gmail.com
Classification: Unclassified
Created attachment 40550
--> http://bugs.winehq.org/attachment.cgi?id=40550
Expected behavior vs actual behavior
In a .net application, if you add an item to a ListBox, newline characters are
shown (in windows, they're hidden). Look at the attached image to see the
differences.
This is the code used to reproduce the problem (VB.NET):
ListBox1.Items.Add("aaa" & "|" & vbNewLine & "bbb" & "|" & vbNewLine & "ccc")
I suspect this problem is not limited to .net, but maybe is at some lower
level.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35056
Bug #: 35056
Summary: Pro⁄Engineer Wildfire 5.0: Fails to start installation
Product: Wine
Version: 1.7.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 46746
--> http://bugs.winehq.org/attachment.cgi?id=46746
WINEDEBUG=+relay,+seh,+tid on wine-1.7.7-107-g61358d0
Steps to reproduce:
1) remove ~/.wine
2) wine setup.exe
Behaviour:
Nothing.
Expected behaviour:
Something.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32791
Bug #: 32791
Summary: Fail to receive stdout from .NET application.
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
Created attachment 43302
--> http://bugs.winehq.org/attachment.cgi?id=43302
Source and exe of Sample application.
Unzip the attached Program.
Run the CreateProcess.exe in the Debug directory.
I am expecting to see the "passed" message, but instead see "failed".
CreateProcess.exe create a process of MyAssembly.exe and is expecting to
receive data via the stdin/out. However this fails when using mono.
If you run MyAssembly.exe by itself, the text appears on the console.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.