http://bugs.winehq.org/show_bug.cgi?id=2259
Summary: SetupDiEnumDeviceInterfaces fixme
Product: Wine
Version: 20040505
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jboender(a)win.tue.nl
When I try to run CPN Tools in wine, I get an infinite number of
"fixme:setupapi:SetupDiEnumDeviceInterfaces" errors.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2258
Summary: Crash due to _fini
Product: Wine
Version: 20040505
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rajeevb(a)interrait.com
Test Program :
#include <dlfcn.h>
#include <direct.h>
#include <math.h>
#include <stdio.h>
main()
{
char *a;
char *b;
double d;
void *mod, *ker;
const char *error;
mod=dlopen("msvcrt.dll.so",RTLD_LAZY);
ker=dlopen("kernel32.dll.so",RTLD_LAZY);
if(mod)
{
if ((error = dlerror())) {
printf("Couldn't find getcwd: %s\n", error);
}
if(dlsym(mod, "getcwd")){
printf("found");
b=getcwd(a,20);
}
dlclose(mod);
dlclose(ker);
} //end if
return (0);
} //end main
Build command :
g++ -g -Wall -c -I/home/timex/wine/wine-20040505/include -I. -
I/home/timex/wine/wine-20040505/include/msvcrt test.cpp
g++ -g -ldl /home/timex/wine/wine-20040505/dlls/msvcrt.dll.so test.o
Debugger output
[me@cvs TUCP]$ gdb -n
GNU gdb Red Hat Linux (5.2.1-4)
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i386-redhat-linux".
(gdb) file ./a.out
Reading symbols from ./a.out...done.
(gdb) break test.cpp:10
Breakpoint 1 at 0x80486cc: file test.cpp, line 10.
(gdb) run
Starting program: /home/a.out
Breakpoint 1, main () at test.cpp:14
14 mod=dlopen("msvcrt.dll.so",RTLD_LAZY);
(gdb) next
15 ker=dlopen("kernel32.dll.so",RTLD_LAZY);
(gdb) disp mod
1: mod = (void *) 0x40013578
(gdb) disp ker
2: ker = (void *) 0x4026cc40
(gdb) next
16 if(mod)
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
19 if(dlsym(mod, "getcwd"))
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
20 {printf("found");
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
21 b=getcwd(a,20);
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) step
getcwd (buf=0x4026cc40 "T\v\022", size=20) at direct.h:73
73 static inline char* getcwd(char * buf, int size) { return _getcwd(buf,
size); }
(gdb) step
_getcwd (buf=0x4026cc40 "T\v\022", size=20) at dir.c:424
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
Current language: auto; currently c
(gdb) step
422 {
(gdb) step
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
(gdb) step
422 {
(gdb) step
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
(gdb) step
Program received signal SIGTRAP, Trace/breakpoint trap.
0x40062179 in _fini () from /home/timex/wine/wine-20040505/dlls/msvcrt.dll.so
(gdb) bt
#0 0x40062179 in _fini () from /home/timex/wine/wine-
20040505/dlls/msvcrt.dll.so
#1 0x08048790 in getcwd (buf=0x4026cc40 "T\v\022", size=20) at direct.h:73
#2 0x08048730 in main () at test.cpp:21
#3 0x40161b84 in __libc_start_main () from /lib/libc.so.6
(gdb)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2257
Summary: Crash due to _fini
Product: Wine
Version: 20040505
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rajeevb(a)interrait.com
Test Program :
#include <dlfcn.h>
#include <direct.h>
#include <math.h>
#include <stdio.h>
main()
{
char *a;
char *b;
double d;
void *mod, *ker;
const char *error;
mod=dlopen("msvcrt.dll.so",RTLD_LAZY);
ker=dlopen("kernel32.dll.so",RTLD_LAZY);
if(mod)
{
if ((error = dlerror())) {
printf("Couldn't find getcwd: %s\n", error);
}
if(dlsym(mod, "getcwd")){
printf("found");
b=getcwd(a,20);
}
dlclose(mod);
dlclose(ker);
} //end if
return (0);
} //end main
Build command :
g++ -g -Wall -c -I/home/timex/wine/wine-20040505/include -I. -
I/home/timex/wine/wine-20040505/include/msvcrt test.cpp
g++ -g -ldl /home/timex/wine/wine-20040505/dlls/msvcrt.dll.so test.o
Debugger output
[me@cvs TUCP]$ gdb -n
GNU gdb Red Hat Linux (5.2.1-4)
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i386-redhat-linux".
(gdb) file ./a.out
Reading symbols from ./a.out...done.
(gdb) break test.cpp:10
Breakpoint 1 at 0x80486cc: file test.cpp, line 10.
(gdb) run
Starting program: /home/a.out
Breakpoint 1, main () at test.cpp:14
14 mod=dlopen("msvcrt.dll.so",RTLD_LAZY);
(gdb) next
15 ker=dlopen("kernel32.dll.so",RTLD_LAZY);
(gdb) disp mod
1: mod = (void *) 0x40013578
(gdb) disp ker
2: ker = (void *) 0x4026cc40
(gdb) next
16 if(mod)
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
19 if(dlsym(mod, "getcwd"))
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
20 {printf("found");
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) next
21 b=getcwd(a,20);
2: ker = (void *) 0x8049b60
1: mod = (void *) 0x40013578
(gdb) step
getcwd (buf=0x4026cc40 "T\v\022", size=20) at direct.h:73
73 static inline char* getcwd(char * buf, int size) { return _getcwd(buf,
size); }
(gdb) step
_getcwd (buf=0x4026cc40 "T\v\022", size=20) at dir.c:424
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
Current language: auto; currently c
(gdb) step
422 {
(gdb) step
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
(gdb) step
422 {
(gdb) step
424 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
(gdb) step
Program received signal SIGTRAP, Trace/breakpoint trap.
0x40062179 in _fini () from /home/timex/wine/wine-20040505/dlls/msvcrt.dll.so
(gdb) bt
#0 0x40062179 in _fini () from /home/timex/wine/wine-
20040505/dlls/msvcrt.dll.so
#1 0x08048790 in getcwd (buf=0x4026cc40 "T\v\022", size=20) at direct.h:73
#2 0x08048730 in main () at test.cpp:21
#3 0x40161b84 in __libc_start_main () from /lib/libc.so.6
(gdb)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2256
Summary: WINE fails to render text in the Magic the Gathering
online demo
Product: Wine
Version: 20040505
Platform: Other
URL: http://www.wizards.com/magiconline/download_client.asp
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adam(a)tpetaccia.com
When I attempt to launch the Magic the Gathering Online demo, after extracting
files (which takes forever, not sure if that's the way the program runs, or the
way WINE is handling the extraction), a window pops up, but I'm not really sure
what's it's saying, as none of the text is rendered. The buttons are there, and
have the checkmarks and Xs on their left side, but the text is not there.
It makes it a little more difficult to get through the installer and play the
game ;-)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2255
Summary: New mmap breaks application loading on FreeBSD
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: syjef(a)mdanderson.org
I have just attempted my first upgrade of wine in a couple of weeks (from CVS)
and on trying to launch various applications I receive errors related to
mapping addresses. Of particular interest to me is the failure I get trying to
run Lotus Notes R5 client. Running wine nlnotes I receive the following
messages:
fixme:ntdll:NtQueryVolumeInformationFile device info not properly supported on
this platform
fixme:file:get_default_drive_device auto detection of DOS devices not
supported on this platform
fixme:cdrom:CDROM_GetInterfaceInfo not implemented for BSD
err:virtual:map_image Image was mapped at 0x205d0000: standard load address
for a Win32 program (0x00400000) not available
err:virtual:map_image Do you have exec-shield or prelink active?
wine: could not load L"C:\\notes\\nlnotes.exe" as Win32 binary
Apparently at version 1.9 of loader/main.c, some code was removed that changed
the way memory was mapped, and the workaround for this was basically to revert
to version 1.89 (this is what the FreeBSD port does). It seems that in the
last few days some new functionality was added to libwine to handle this, and
a new file, mmap.c, was added in libs/wine. I am assuming this is where the
failure is, but I don't yet have an understanding of how this code works. Can
anyone help with this?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2204
------- Additional Comments From syjef(a)mdanderson.org 2004-27-05 12:14 -------
I have done some more looking and it appears my pthread_mutex_trylock_basic
was somehow due to OpenGL using libpthread instead of libc_r. I have better
luck setting libGL to use libc_r, but I think the particular copy of wine I
had had some other bugs. I am trying to test from a newer version but I am
running into another problem, subject of a bug report I will open shortly
unless I find someone already has one open.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2254
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2004-27-05 08:27 -------
I asked the author about coode pieces showinh how he handles the Menu bar. Let's
wait if he answers. A similar error is seen with skype...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2254
Summary: Program Quickdic: menu bar does not respond
Product: Wine
Version: 20040505
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kados(a)a1.net
The free dictionary software "Quickdic" works in general, but the menu bar is only
visible and not clickable. Mouse clicks for non-menu areas are ok.
(Quickdic is free software, downloadable from "http://www.quickdic.de")
D.Kados
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2253
Summary: 256 Color (8bpp) doesnt seem to work correctly anymore
Product: Wine
Version: 20040505
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: developer(a)oldunreal.com
After upgrading wine to 20040505 in a X-Server with 8bpp, tried with notepad
f.e. - it seems to runs with nearly no color anymore, everything is black or
dark read, nearly not readable anymore, tried to reserve for the colormap 256
colors instead of 100, seemed almost normal again, but running Starcraft or
other more complex apps which use 8bpp it simply results in a crash, with error
messages which can't be read because of the colors. It happens when using nv or
nvidia driver, doesnt matter if i use the X provided drivers or the binaries
from nvidia. This isnt a critical bug, but running 8 bpp apps in a 32 bpp Server
causes my machine to slow down below a usable state.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2252
Summary: SMAC(X): Unhandled Exception
Product: Wine
Version: 20040408
Platform: Other
URL: http://home.arcor.de/bashork/gentoo/wine-smacx/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lindevel(a)gmx.net
CC: lindevel(a)gmx.net
When I want to run Sid Meier's Alpha Centauri (SMAC) or the addon (SMACX) with
wine it returns me following lines in the console output(shortened):
-------
wine: Unhandled exception (thread 0013), starting debugger...
[...]
Breakpoint 1 at 0x47b3b990 (_end+0x47a29480)
*** Invalid address 0x47b44fa0 (_end+0x47a32a90)
[...]
Unhandled exception: page fault on read access to 0xc0430004 in 32-bit code
(0x0042d38c).
In 32-bit mode.
0x0042d38c (terran.exe..txt2+0xa38c in terran.exe): movl 0x4(%eax),%esi
-------
This happens this way:
I start axstart.exe (the program where you choose whether to play SMAC or
SMACX(the addon) with "WINEDEBUG=all wine axstart.exe"_
Game goes to fullscreen_
The Firaxis Logo Video shows up_
The choosingscreen appears: Everything is fine: Animated Logos(of SMAC and
SMACX), sound, mouse, colors_
I click on an icon: Program crashes, Wine-Dbg starts_
No Window is left_
The full log is available at: http://home.arcor.de/bashork/gentoo/wine-smacx/
crash-log_debug-all -> Full log
crash-log_debug-all.short -> shortened log(last 500 lines)
Wine-Dbg's messages are from 324 to 381 in the short log.
If you think this could be a general problem with my wine-build read
http://www.winehq.org/hypermail/wine-users/2004/05/0164.html
There are the descriptions of errors that occour with Steam/HL.
I hope you can help me, even if this might not be a real bug,
Dennis
(If you miss some information, please tell me...)
SYSTEM:
Software: (In brackets[]: Gentoo-Ebuild)
Distribution: Gentoo
Wine: 20040408 [app-emulation/wine-20040408]
XOrg: 6.7.0 [x11-base/xorg-x11-6.7.0]
ATI-Drivers: 3.7.6 [media-video/ati-drivers-3.7.6-r1]
Kernel: 2.6.5 [sys-kernel/gentoo-dev-sources-2.6.5-r1]
GCC: 3.3.3 20040412 (Gentoo Linux 3.3.3-r5, ssp-3.3-7, pie-8.7.5.3)
[sys-devel/gcc-3.3.3-r5]
GLibC: 2.3.3 [sys-libs/glibc-2.3.3_pre20040420]
Windows: None used with Wine
Hardware:
Athlon XP 2000+
nVidia nForce2 (ASUS A7N8X)
ATI Radeon 9000
EMERGE INFO: http://home.arcor.de/bashork/gentoo/wine-smacx/emerge_info
(Additional system information)
[NOTE: C(XX)FLAGS and MAKEOPTS are UNSET inside the wine-ebuild!!! So they are
not used for building wine!]
EMERGE WORLD: http://home.arcor.de/bashork/gentoo/wine-smacx/emerge_world
(All installd packages with additional infos (USE-Flags: +/-))
WINE CONFIG: http://home.arcor.de/bashork/gentoo/wine-smacx/config
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.