http://bugs.winehq.org/show_bug.cgi?id=24453
Summary: Snes9x 1.52 runs very slowly with DirectDraw.
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: LordHDL(a)yahoo.com
Created an attachment (id=30850)
--> (http://bugs.winehq.org/attachment.cgi?id=30850)
Terminal Output
Two tests were performed. The first one is with ddr=gdi. Like this, the
audio/video are both sluggish when the video mode is set to DirectDraw. The
second one is after using winetricks to set ddr=opengl, in which case it runs
even more slowly. Also, the video does not appear properly until after
toggling the "hide menu bar" option at least once after loading a game.
--
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=32052
Bug #: 32052
Summary: Microsoft SQL Server 2000 Desktop Engine (MSDE 2000)
Release A installer creates incorrect registry entry
Product: Wine
Version: 1.5.15
Platform: x86
URL: http://www.microsoft.com/download/en/details.aspx?id=2
2661
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
To reproduce:
Download and run the MSDE installer MSDE2000A.EXE
This will unpack to directory c:\MSDERelA.
Go to that directory, then run
wine setup.exe blanksapwd=1 disablenetworkprotocols=0
At some point it will start MSSQLServer service. The service should start
listening on both named pipes and TCP, however it starts only on TCP. That is
because ProtocolList entry in
HKLM\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib is created
incorrect: under Wine it is of type REG_SZ and contains tcp, under Windows it
is REG_MULTI_SZ and contains both tcp and np.
--
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=22350
Summary: Wine does not support .net apps out-of-the-box
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Simple .net apps should work in Wine without having to
install anything extra; see
http://wiki.winehq.org/Mono for current status.
This affects, for instance, the Sims 3 launcher.
--
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=32039
Bug #: 32039
Summary: Ankh hangs on start with built-in msvcp71
Product: Wine
Version: 1.5.15
Platform: x86
URL: http://www.gamershell.com/download_12202.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
At least 2 games in the Ankh series that I can test have the reported problem
(Ankh and Ankh 2:Heart of Osiris). Ankh 3 behaves a little differently because
it crashes with an 'unhandled stack overflow' when using the built-in msvcp71.
These games come with native msvcp71,msvcr71 installed in the game directory,
and they start fine when using the native ones.
When msvcp71=builtin, the game (Ankh) hangs forever on start with high CPU
usage.
Ankh.exe and wineserver together are constantly hogging the CPU, but nothing
happens.
Terminal output:
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f5a0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f3f0 1 C) semi-stub
err:msvcrt:MSVCRT__wsopen_s Unhandled shflags 0x1b6
err:msvcrt:MSVCRT__wsopen_s Unhandled shflags 0x1b6
Mscodescan reports that
./Ankh.exe imports following stub symbols:
msvcr71:__security_error_handler
./OgreMain.dll imports following stub symbols:
msvcr71:__security_error_handler
./OgreGUIRenderer.dll imports following stub symbols:
msvcr71:__security_error_handler
...
wine-1.5.15-249-g8392a85
--
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=22034
Summary: EXIT_ON_ERROR should use ERR instead of WARN in
winealsa.drv
Product: Wine
Version: 1.1.40
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: superquad.vortex2(a)gmail.com
In winealsa.drv , WARN() should not be used in EXIT_ON_ERROR() since those
functions in waveout.c and wavein.c are all fatal errors
(e.g. snd_pcm_hw_params_set_period_time() may return error on when using "hw"
device for some alsa driver by modifying registry "ALSA Driver" "UseDirectHW"
to "Y" for those hardware mixing sound cards)
wine is unable to report those error message for those alsa drivers
#define EXIT_ON_ERROR(f,e,txt) do \
{ \
int err; \
if ( (err = (f) ) < 0) \
{ \
WARN(txt ": %s\n", snd_strerror(err)); \
+ ERR(txt ": %s\n", snd_strerror(err)); \
retcode=e; \
goto errexit; \
} \
} while(0)
--
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=31878
Bug #: 31878
Summary: configure fails on platform armv7l
Product: Wine
Version: 1.5.14
Platform: arm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stefan.Leichter(a)camLine.com
Classification: Unclassified
Created attachment 41958
--> http://bugs.winehq.org/attachment.cgi?id=41958
config.log
Configure fails to run on my Pandora (http://openpandora.org). Relevant part of
the config.log:
configure:4166: gcc -o conftest -g -O2 conftest.c >&5
/tmp/ccbPzEDU.s: Assembler messages:
/tmp/ccbPzEDU.s:51: Error: selected processor does not support `blx ac_test'
configure:4166: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Wine"
| #define PACKAGE_TARNAME "wine"
| #define PACKAGE_VERSION "1.5.14"
| #define PACKAGE_STRING "Wine 1.5.14"
| #define PACKAGE_BUGREPORT "wine-devel(a)winehq.org"
| #define PACKAGE_URL "http://www.winehq.org"
| #define EXEEXT ""
| /* end confdefs.h. */
| int ac_test(int i) { return i; }
| int
| main ()
| {
| asm(".thumb\nblx ac_test\n.arm"); if (ac_test(1)) return 1
| ;
| return 0;
| }
configure:4170: result: no
--
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=8692
Matthias Fenner <informix(a)web.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |informix(a)web.de
--- Comment #15 from Matthias Fenner <informix(a)web.de> 2012-11-08 13:19:13 CST ---
Indeed,
i even get this error when i try to open e.g. the properties-page of a
directory in Total-Commander 8:
fixme:shell:ItemMenu_InvokeCommand Is an EX structure
fixme:shell:ItemMenu_InvokeCommand Unhandled Verb 6fafl
inf0rmix@smnbx:~$ wine --version
wine-1.5.16
Is this realated to this Problem, or am I wrong here ?
How can I help to fix this ?
--
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=7425
--- Comment #23 from Michael B <toxatec(a)web.de> 2012-11-07 13:12:19 CST ---
Gothic 2 + Addon 2.60 is running fine on windows 7 64bit for me. I had to run
Gothic2.exe *twice* and then kill rundll32.exe to make it actually launch.
Vdfs32g.exe seems to work as intended although it causes problems for some
people on windows as you can read around the web.
Maybe there is a bug in wine affecting Vdfs32g.exe, but as you can just ignore
the crash or delete that binary shouldn't we just close this bug and add a note
in the AppDB?
--
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=4666
Ageritt <remi1912(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |remi1912(a)gmail.com
--
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=7425
--- Comment #22 from Michael B <toxatec(a)web.de> 2012-11-06 19:04:15 CST ---
I just installed Gothic 2 (German "Limited Gold Edition") in a clean prefix
with wine-1.5.16 on arch64.
Gothic II (without addon) 1.30:
- Installs fine
- With vdfs32g.exe: Runs fine without music, minor issues concerning
resolution. Vdfs32g.exe seems to be working as intended (Before the game starts
there is a progress bar "initializing" something)
- vdfs32g.exe removed: Still working, no progress bar at startup
- Original CD and no crack used
So version 1.30 can be excluded I guess.
Gothic II (with addon) 2.60:
- Addon installs fine
- Copy protection doesn't work -> NoCD fix (2.6 GERMAN NoCD/Fixed EXE)
When starting the game Vdfs32g.exe crashes immediately: "Program Error, The
program Vdfs32g.exe has encountered a serious problem..."
You can close this window, then the game starts and runs fine.
With Vdfs32g.exe removed the game runs fine, as Xavier pointed out. I can also
confirm that with 'winetricks directmusic' and musicEnabled=1 there is an error
message at startup and the game closes.
I'll test this on Windows 7 tomorrow.
--
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.