https://bugs.winehq.org/show_bug.cgi?id=41292
Bug ID: 41292
Summary: Game freezes to infinite DSOUND_PerformMix loop
Product: Wine
Version: 1.9.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: wyrex(a)openmailbox.org
Distribution: ---
Nexton LC-ScriptEngine is an engine for visual novels. Games using it
(lcsebody.exe) freeze in various places under wine. They don't crash and wine
doesn't give output but using +dsound I discovered there is infinite loop that
happens after freeze.
trace:dsound:DSOUND_PerformMix (0x1381f8)
trace:dsound:DSOUND_MixToPrimary (23808,4160)
trace:dsound:DSOUND_MixToPrimary MixToPrimary for 0x13ebb0, state=0
trace:dsound:DSOUND_MixToPrimary MixToPrimary for 0x1422a0, state=0
If I run "winetricks dsound" these games work and don't crash.
My sound setup is pulseaudio with alsa sink and wine is set to use pulseaudio
in winecfg.
--
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=51635
Bug ID: 51635
Summary: wine fails to build with glibc 2.34
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dnsapi
Assignee: wine-bugs(a)winehq.org
Reporter: timo.gurr(a)gmail.com
Distribution: ---
Created attachment 70492
--> https://bugs.winehq.org/attachment.cgi?id=70492
build.log
wine fails to build on systems with glibc 2.34 with the following error (full
build.log attached).
[...]
/usr/x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu-ld: dlls/dnsapi/libresolv.o:
in function `resolv_query':
libresolv.c:(.text+0x80a): undefined reference to `ns_initparse'
/usr/x86_64-pc-linux-gnu/bin/x86_64-pc-linux-gnu-ld: libresolv.c:(.text+0x908):
undefined reference to `ns_parserr'
collect2: error: ld returned 1 exit status
winegcc: /usr/bin/x86_64-pc-linux-gnu-cc failed
[...]
>From the release notes of glibc 2.34:
* Various rarely-used functions declared in <resolv.h> and
<arpa/nameser.h> have been deprecated. Applications are encouraged to
use dedicated DNS processing libraries if applicable. For <resolv.h>,
this affects the functions dn_count_labels, fp_nquery, fp_query,
fp_resstat, hostalias, loc_aton, loc_ntoa, p_cdname, p_cdnname,
p_class, p_fqname, p_fqnname, p_option, p_query, p_rcode, p_time,
p_type, putlong, putshort, res_hostalias, res_isourserver,
res_nameinquery, res_queriesmatch, res_randomid, sym_ntop, sym_ntos,
sym_ston. For <arpa/nameser.h>, the functions ns_datetosecs,
ns_format_ttl, ns_makecanon, ns_parse_ttl, ns_samedomain, ns_samename,
ns_sprintrr, ns_sprintrrf, ns_subdomain have been deprecated.
* Various symbols previously defined in libresolv have been moved to libc
in order to prepare for libresolv moving entirely into libc (see earlier
entry for merging libraries into libc). The symbols __dn_comp,
__dn_expand, __dn_skipname, __res_dnok, __res_hnok, __res_mailok,
__res_mkquery, __res_nmkquery, __res_nquery, __res_nquerydomain,
__res_nsearch, __res_nsend, __res_ownok, __res_query, __res_querydomain,
__res_search, __res_send formerly in libresolv have been renamed and no
longer have a __ prefix. They are now available in libc.
Source: https://sourceware.org/pipermail/libc-alpha/2021-August/129718.html
--
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=51506
Bug ID: 51506
Summary: Disabled controls are not greyed out with the new
Light Blue theme
Product: Wine-staging
Version: 6.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ritalat(a)fastmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70345
--> https://bugs.winehq.org/attachment.cgi?id=70345
Example in the staging section of winecfg
Disabled controls are not greyed out with the new Light Blue theme
--
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=31603
Bug #: 31603
Summary: App manifests that specify processorArchitecture="*"
fail to find assemblies
Product: Wine
Version: 1.5.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Doing
unset WINEPREFIX
rm -rf ~/.wine
sh winetricks -q vcrun2008
cd ~/wine-git/dlls/msvcr90/tests
WINEDLLOVERRIDES=msvcr90=n ~/wine-git/wine msvcr90_test.exe.so
says
msvcr90.c:243: Tests skipped: msvcr90.dll not installed (got 126)
This seems wrong; that dll is in fact installed. The app in question
is built with the manifest
http://source.winehq.org/source/dlls/msvcr90/tests/msvcr90.manifest
which contains the line
processorArchitecture="*"
Tracing through the code, lookup_manifest_file in ntdll/actctx.c seems to
incorrectly parse the native DLL's manifest as having build 0 rather
than 30729.
The problem appears to be that line 1872 assumes that the string
lookup contains no *'s other than the ones in lookup_fmtW, and so
doesn't skip to where it expected to when it does the strchrW:
1826 static const WCHAR wine_trailerW[] =
{'d','e','a','d','b','e','e','f','.','m','a','n','i','f','e','s','t'};
1842 sprintfW( lookup, lookup_fmtW, ai->arch, ai->name, ai->public_key,
1843 ai->version.major, ai->version.minor, lang );
1872 tmp = dir_info->FileName + (strchrW(lookup, '*') - lookup);
1873 build = atoiW(tmp);
1874 if (build < min_build) continue;
If ai->arch contains a '*', as it does in tests/msvcr90.manifest,
this assumption is violated. Changing the manifest to say
processorArchitecture="x86"
lets the test run and find the native DLL, at least on x86.
So, is the manifest wrong, or is lookup_manifest_file() wrong?
(This came up while I was trying to write tests for vcomp.dll. It was
frustrating to find that the example I'd borrowed the manifest from was
broken.)
--
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=21739
Summary: Mouse in Nostale not working
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: skoruppa(a)gmail.com
Mouse generally works, but not everywhere. All elements of the gui, the login
screen and selection screen works, but not during the control of character.
I do not post logs because they are not showing. Perhaps some special
WINEDEBUG?
--
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=42148
Bug ID: 42148
Summary: Redrawing issues in Capitalism 2
Product: Wine
Version: 2.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 56717
--> https://bugs.winehq.org/attachment.cgi?id=56717
Screenshot illustrating the redrawing issues.
Hello everyone,
I am the AppDB maintainer of "Capitalism 2" a business strategy game which has
some issues I would like to point out.
The initial issue during tests some releases ago was that mouse control wasn't
working but a staged patch could be applied which fixed the issue and got
integrated into main wine.
https://github.com/wine-compholio/wine-staging/tree/master/patches/dinput
Unfortunately a new issue has sprung up in the game which is that when I move
the mouse it has some redrawing issues and paints the background.
To illustrate this I uploaded a screenshot into the AppDB at:
https://appdb.winehq.org/screenshots.php?iAppId=2098&iVersionId=2895
Fortunately there is a demo version available which can be downloaded.
https://appdb.winehq.org/objectManager.php?sClass=version&iId=30640
Could you have a look into this if possible?
Kind regards,
Maik
--
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=47905
Bug ID: 47905
Summary: Logos Bible Software fails to play media
Product: Wine
Version: 4.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: johnpgoodman(a)gmail.com
Distribution: ---
Created attachment 65399
--> https://bugs.winehq.org/attachment.cgi?id=65399
Selected a video from the quickstart courses these don't play
No audio or video in the program plays. E.g. when opening the quickstart
videos:
In the video window which has a black background and says 'We couldn't access
the media you're trying to play. Please verify that you are not working
offline.' etc.
My guess is that it might be a problem streaming the video rather than
necessarily a problem playing it but not sure.
--
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=46871
Bug ID: 46871
Summary: err:rpc:rpcrt4_protseq_np_wait_for_new_connection wait
failed with error 87
Product: Wine
Version: 4.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: rpc
Assignee: wine-bugs(a)winehq.org
Reporter: susancragin(a)earthlink.net
Distribution: ---
Created attachment 63932
--> https://bugs.winehq.org/attachment.cgi?id=63932
NaturallySpeaking 13 setup log
When installing Dragon NaturallySpeaking 13, the installation hangs up right at
the last instruction.
A prior bug 46160 was filed about NatSpeak 13 hanging up at the end of
installation, and I think that bug might have been fixed in the most recent
wine version, and this other bug uncovered.
bug 46160
Anyway, the installation stops as of this:
err:rpc:rpcrt4_protseq_np_wait_for_new_connection wait failed with error 87
I have posted the installation log.
If I kill the installation and then try to start the program, the program works
up to a point. It waves hello, and then asks if I want to register the program
immediately or run it up to 5 times without registering.
When I hit either of these options, the program crashes.
I have included the crash log also.
--
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=43827
Bug ID: 43827
Summary: The program thududf.sys has encountered a serious
problem and needs to close
Product: Wine
Version: 1.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: version
Assignee: wine-bugs(a)winehq.org
Reporter: accessd(a)shaw.ca
Distribution: ---
Created attachment 59377
--> https://bugs.winehq.org/attachment.cgi?id=59377
Resultant dump when starting application via desktop link
Select icon on the desktop "Roxio Easy VHStoDVD 3" This followed by an
immediate error: The program thududf.sys has encountered a serious problem and
needs to close
--
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=34835
Bug #: 34835
Summary: Civilization II Crash after extended play.
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmg_(a)hotmail.com
Classification: Unclassified
Created attachment 46436
--> http://bugs.winehq.org/attachment.cgi?id=46436
Backtrace #1
After several hours of playtime with "Civilization II Multiplayer Gold", a
crash occurs with an error box and upon exiting the error box, the game closes.
It's a clean Wine 1.6 install with no proprietary DLLs etc. installed that I am
aware of.
Game was launched in Windowed mode at 1280x720 with Civ2 in Win98 mode. Only
"Allow Window manager to control the windows" under Graphics is selected with
the Virtual desktop at 1280x720. Other than the crash during extended play, the
game works perfectly. I haven't used Windows since XP but know this game did
not work under XP without hacks so I am unable to give a report about if it
works on Windows.
This is my first Bug Report and I apologize if I have missed anything. I ran
through the other reports and I can't find anything like my issue. I've played
it for 7+ hours before the crash. I ran it a second time as I wrote this
report, with the terminal, and I will include the output of that as it crashed
again around 400 B.C. Game Year.
Xubuntu 12.04
AMD 6670
AMD FX4100
--
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.