http://bugs.winehq.org/show_bug.cgi?id=33343
Bug #: 33343
Summary: unimplemented function msvcp90.dll
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: justineuro.moin(a)gmail.com
Classification: Unclassified
wine: Call from 0x7b83a323 to unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z,
aborting
wine: Unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
called at address 0x7b83a323 (thread 002f), starting debugger...
Unhandled exception: unimplemented function
msvcp90.dll.??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@H@Z
called in 32-bit code (0x7b83a323).
--
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=2203
--- Comment #31 from fox6x6x6(a)gmail.com 2013-04-06 16:55:29 CDT ---
(In reply to comment #30)
> I've edited the start_dosbox function in programs/winevdm/winevdm.c by adding
> the line
> if (fork())
> before the
> ret = spawnvp( _P_WAIT, args[0], args );
> line and now it works.
>
> It also works if you let the child do the work with
> if (!fork())
>
> Very strange indeed, I don't understand why this fixes the bug, maybe one of
> you does?
Sorry, it doesn't fix the problem, because the dosbox that starts is empty.
--
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=2203
fox6x6x6(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fox6x6x6(a)gmail.com
--- Comment #30 from fox6x6x6(a)gmail.com 2013-04-06 16:50:59 CDT ---
I've edited the start_dosbox function in programs/winevdm/winevdm.c by adding
the line
if (fork())
before the
ret = spawnvp( _P_WAIT, args[0], args );
line and now it works.
It also works if you let the child do the work with
if (!fork())
Very strange indeed, I don't understand why this fixes the bug, maybe one of
you does?
--
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=27350
Summary: Eve Online UI elements not drawn
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keldon(a)keldon.net
Created an attachment (id=34976)
--> (http://bugs.winehq.org/attachment.cgi?id=34976)
shader errors and source
A recent patch to Eve Online changed the underlying UI code, and now only the
background of the login screen appears, with no UI elements drawn on top. The
console output includes:
fixme:d3d_shader:print_glsl_info_log Error received from GLSL shader #4:
fixme:d3d_shader:print_glsl_info_log 0:0(0): error: no matching function
for
call to `texture2DLod(sampler2D, vec2, float)'
fixme:d3d_shader:print_glsl_info_log 0:28(53): error: type mismatch
The full GLSL source that failed to compile is also printed; I'll attach it.
I'm using the r600g driver from Mesa git.
--
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=33254
Bug #: 33254
Summary: sprintf doesn't respect _set_output_format for E
format
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastian.wolff(a)dynardo.at
Classification: Unclassified
On UNIX systems the printf functions always create an exponent with 2 digits.
This is different on Windows, where 3 digits are used for the exponent at least
by default. One can, however, justify this default:
#include <stdio.h>
#include <iostream>
int main()
{
// enforce 2 digits in the exponent of printf() floating point format (Windows
uses 3 digits by default, UNIX uses 2)
unsigned int old_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
char string[80];
int node_id(0);
double x(0),y(0),z(0), node_info_1(0), node_info_2(0);
int num_written = sprintf(string, "%8d%16.8E%16.8E%16.8E%8d%8d", node_id, x, y,
z, node_info_1, node_info_2);
std::cout << string << std::endl;
// restore number of digits in printf floating point format
_set_output_format(old_exponent_format);
}
On Windows this produces output with 2 digits used for the exponent. On WINE,
however, always 3 digits are used.
--
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=33333
Bug #: 33333
Summary: Power Point 2007 doesn't starts
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spatialmodels(a)gmail.com
Classification: Unclassified
Created attachment 44089
--> http://bugs.winehq.org/attachment.cgi?id=44089
wine output
I've set native riched20 within winecfg, but the problem still happens.
After the first launch, the system ask to start in safe mode, but without
results.
--
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=33334
Bug #: 33334
Summary: Instructions of how to set up mac driver in wine are
missing
Product: WineHQ.org
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: macmolder(a)gmail.com
Classification: Unclassified
This new bug originated from bug 33182.
macOS related documentation is missing instructions how to set up mac driver in
wine:
You need to make a REG_SZ value under Drivers, named Graphics (not a key):
[Software\\Wine\\Drivers]
"graphics"="mac,x11"
You can also do:
$ unset $DISPLAY
if running from a terminal.
Mac documentation pages in winehq :
http://wiki.winehq.org/MacOSXhttp://wiki.winehq.org/MacOSX/FAQs
--
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=12848
Summary: write protection
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dustin.steiner(a)gmail.com
Created an attachment (id=12535)
--> (http://bugs.winehq.org/attachment.cgi?id=12535)
read-only error
if i want to open a project-file in microstation v8 2004, it returnes the
error, that the file is already in use.
but no user has opened it - see screenshot for error-message
--
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=9127
ahoka(a)lavabit.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ahoka(a)lavabit.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=3901
--- Comment #51 from Jussi Pakkanen <jpakkane(a)gmail.com> 2013-04-03 13:59:41 CDT ---
Now it has stopped asking for the second CD and gone back to failing. I tried
to recreate the request but could not.
--
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.