http://bugs.winehq.com/show_bug.cgi?id=1503
saulius.krasuckas(a)elst.vtu.lt changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20030508 |20030911
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-08-12 12:00 -------
i was about to make some mod to scroll.c and test new way "scroll range" is
handled in win16 mode: http://www.winehq.com/hypermail/wine-devel/2003/03/0631.html
but something has changed since then. app crashes in a bit different way. the
patch causing changes is: http://www.winehq.org/hypermail/wine-cvs/2003/11/0109.html
here goes the diff of wine outputs got before and after applying aforementioned
patch. sending as an attachment (hate i don't understand how to avoid wrapping
with this your-web-server/my-web-client pair)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1870
Summary: ICMP Calls from programs crashes wine when not running
as ROOT
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: chris(a)kfdm.com
Application: TVSCAN (Omega32) from marketron (www.marketron.com).
Problem:
When running the application from any normal user, the error message
"WARNING: Trying to use ICMP (network ping) will fail unless running as root"
appears and causes wine to drop into the debugger.
When I run the application as ROOT, then I do not get the error (using the same
configuration files as the user account).
If I then set the wine executables to suid ROOT, then wine will not run as a
user because the /tmp/.wine-{user}/{server #}/socket does not belong to the user
account (it is set as root/root owner/group).
This means that to run this application, the user must be logged in as root.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1869
Summary: Wine Can't collect Free Space!
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ksj5903(a)empal.com
I'm Wine(20031118) User.
I try to install a program which make installsheild(maybe old version).
but install program tells me "Can't copy. Not enough Free Space."
When I installed wine(20030911), It Installed.
What's Problem?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1868
Summary: ftol function from msvcrt emulation incorporates GNU-C
specific artefact
Product: Wine
Version: 20030813
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cbah(a)chez.com
There is an feature in way how GNU-C generated code handles double to int
conversion, i.e. the following code:
-----
#include <stdio.h>
int main() {double t[]= {
2777777777.0,
1777777777.0,
};int i;
for(i=0;i<sizeof(t)/sizeof(*t);i++) {
printf("%lf -> %#x\n", t[i], (long)t[i]);
}
return 1;
}
---
When compiled with GCC prints out
2777777777.000000 -> 0x80000000
1777777777.000000 -> 0x69f6bc71
And when compiled with MSVC++ (use /MD and save as ftol.exe for the next test),
prints out something better.
2777777777.000000 -> 0xa5918671
1777777777.000000 -> 0x69f6bc71
Unsuprisingly if ftol.exe launched under wine, it prints out 0x80000000 as
result of first conversion. Using original msvcrt.dll with wine solves the
problem. However problem could be solved in msvcr emulation layer by applying
the following ha^H^Hpatch:
--- ./work/wine-20030813/dlls/ntdll/misc.c.orig Sun Dec 7 21:57:45 2003
+++ ./work/wine-20030813/dlls/ntdll/misc.c Mon Dec 8 00:14:04 2003
@@ -59,8 +59,10 @@
/* don't just do DO_FPU("fistp",retval), because the rounding
* mode must also be set to "round towards zero"... */
double fl;
+ long long r;
POP_FPU(fl);
- return (LONG)fl;
+ r = (long long)fl;
+ return (long)r;
}
#endif /* defined(__GNUC__) && defined(__i386__) */
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1867
Summary: direct sound (wineoss) records when plays, generating
dma overruns
Product: Wine
Version: 20030318
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Jskud(a)Jskud.com
>From Jskud Sun Dec 7 14:33:12 -0800 2003
From: Jskud(a)Jskud.com
To: discuss(a)crossover.codeweavers.com
Subject: mystery solved: why bad/no sound with QuickTimePlayer on CX-plugin 2.0.2
Reply-to: Jskud(a)Jskud.com
Problem
crappy sound with (latest) standard i810_audio driver
no sound with (latest) ALSA intel8x0 driver
Cause
i810_audio driver enables record and playback triggers on open;
wineoss respects the current triggers; Intel ICH3 (the /dev/dsp
controller) will read data on playback. Since the client is not
draining the input buffer, there is an overrun, and disruptive
error handling, with poor real time audio behavior, ensues.
intel8x0: traced it as far as mmap failure (EIO) in wineoss.
Possible Solutions
Patch the i810_audio driver to disable PCM_ENABLE_INPUT on open
#if 0
dmabuf->trigger |= PCM_ENABLE_INPUT;
#endif
Hack wineoss to disable the triggers on (device) open, since it
carefully preserves them thereafter.
Use better hardware (Intel ICH5 does not exhibit this behavior)
Verification
Patched the i810_audio driver, and QuickTimePlayer works great.
Details
I recently purchased and installed Crossover Plugin 2.0.2, and
installed the WinDoze QuickTime plugin (6.3, per the FAQ --
thanks). All this on my Dell Inspiron 4150, using a chipset
with the Intel ICH3, running RedHat 8.0, with the latest kernel,
2.4.20-24.8, installed.
There were no problems playing sound with xmms. However, I had
poor sound via QuickTimePlayer with the native i810_audio
driver, so I installed the latest version of ALSA (1.0.0rc1),
and configured the intel8x0 driver. Worse, now I had no sound
with QuickTimePlayer.
I enabled debug channels, and discovered that some mmap call in
wineoss was failing with EIO when using ALSA. But I also
noticed I had "dma overrun" messages using the simpler
(non-ALSA) default i810_audio, and decided to investigate that.
The Cause and Solution above report my findings.
/Jskud
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1866
Summary: Unimplemented function (Worms3D/Installshield)
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tais.hansen(a)osd.dk
Wine dies on "unimplemented function uxtheme.dll.GetThemeAppProperties" when
attempting to install Worms 3D:
$ wine --version
Wine 20031118
$ wine setup.exe
fixme:seh:check_resource_write Broken app is writing to the resource data,
enabling work-around
fixme:seh:EXC_RtlRaiseException call to unimplemented function uxtheme.dll.
GetThemeAppProperties
wine: Unhandled exception (thread 000b), starting debugger...
WineDbg starting on pid a
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'D:\setup.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x401b0000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40480000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x406d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x406c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x408f0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40870000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40710000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40930000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL' (0x40a10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40bd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\CRYPT32.DLL' (0x41a50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x41570000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x416d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x41640000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\SETUP.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\IGDI.DLL' (0x41940000)
No debug information in 32bit DLL 'E:\ISP03A9.TMP\_SETUP.DLL' (0x4196f000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\UXTHEME.DLL' (0x419d0000)
Unhandled exception: unimplemented function uxtheme.dll.GetThemeAppProperties
called in 32-bit code (0x419dc051).
In 32-bit mode.
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:1007 GS:005f
EIP:419dc051 ESP:406ace10 EBP:406ace64 EFLAGS:00000206( - 00 I - -P1 )
EAX:406ace10 EBX:419de90c ECX:419dc670 EDX:4020bbc4
ESI:41c704d0 EDI:00000001
Stack dump:
0x406ace10 (KERNEL32.DLL.VerSetConditionMask+0x13a8fe): 80000100 00000001
00000000 4194480c
0x406ace20 (KERNEL32.DLL.VerSetConditionMask+0x13a90e): 00000002 419dcd40
419dcddd 419dc156
0x406ace30 (KERNEL32.DLL.VerSetConditionMask+0x13a91e): 00000000 00000208
419de16c 405875a8
0x406ace40 (KERNEL32.DLL.VerSetConditionMask+0x13a92e): 406ace6c 404ddf13
419d0000 406ace58
0x406ace50 (KERNEL32.DLL.VerSetConditionMask+0x13a93e): 00000000 406ace60
00160015 41965138
0x406ace60 (KERNEL32.DLL.VerSetConditionMask+0x13a94e): 419de90c 406ace74
419dc176 419dcddd
0x406ace70 (KERNEL32.DLL.VerSetConditionMask+0x13a95e):
0200: sel=1007 base=40016000 limit=00001f83 32-bit rw-
Backtrace:
=>0 0x419dc051 (UXTHEME.DLL..text+0xb051 in UXTHEME.DLL) (ebp=406ace64)
1 0x419dc176 (UXTHEME.DLL.GetThemeBackgroundContentRect in UXTHEME.DLL)
(ebp=406ace74)
2 0x4194480c (IGDI.DLL.LoadSkinArchive+0xa12 in IGDI.DLL) (ebp=406adf50)
3 0x100071cd (SETUP.DLL..text+0x61cd in SETUP.DLL) (ebp=406adff8)
4 0x100132a0 (SETUP.DLL.UseXPTheme+0x8651 in SETUP.DLL) (ebp=406ae0c8)
5 0x1000b8ae (SETUP.DLL.UseXPTheme+0xc5f in SETUP.DLL) (ebp=406ae138)
6 0x1000ae10 (SETUP.DLL.UseXPTheme+0x1c1 in SETUP.DLL) (ebp=406ae1e0)
7 0x100095ff (SETUP.DLL.Start+0x74 in SETUP.DLL) (ebp=406ae96c)
8 0x004085ab (setup.exe..text+0x75ab in setup.exe) (ebp=406af344)
9 0x004073de (setup.exe..text+0x63de in setup.exe) (ebp=406afeb0)
10 0x0040b91f (setup.exe.EntryPoint+0x8b in setup.exe) (ebp=406aff10)
11 0x404e874d (KERNEL32.DLL.SetThreadExecutionState+0x1a68 in KERNEL32.DLL)
(ebp=406afff4)
12 0x40027d39 (_end+0x4025e1d) (ebp=00000000)
0x419dc051 (UXTHEME.DLL..text+0xb051 in UXTHEME.DLL): subl $4,%esp
Modules:
Address Module Name
0x00400000-0041be00 (PE) D:\setup.exe
0x10000000-1004d000 (PE) C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\SETUP.DLL
0x401b0000-40214000 (PE) NTDLL.DLL
0x40480000-4058b000 (PE) KERNEL32.DLL
0x406c0000-406cc000 (PE) C:\WINDOWS\SYSTEM\VERSION.DLL
0x406d0000-406e3000 (PE) C:\WINDOWS\SYSTEM\LZ32.DLL
0x40710000-40852000 (PE) C:\WINDOWS\SYSTEM\USER32.DLL
0x40870000-408e5000 (PE) C:\WINDOWS\SYSTEM\GDI32.DLL
0x408f0000-40918000 (PE) C:\WINDOWS\SYSTEM\ADVAPI32.DLL
0x40930000-4099f000 (PE) C:\WINDOWS\SYSTEM\OLE32.DLL
0x409c0000-409ec000 (PE) C:\WINDOWS\SYSTEM\RPCRT4.DLL
0x40a10000-40a76000 (PE) C:\WINDOWS\SYSTEM\OLEAUT32.DLL
0x40bd0000-40c42000 (PE) C:\WINDOWS\SYSTEM\X11DRV.DLL
0x41570000-41623000 (PE) C:\WINDOWS\SYSTEM\COMCTL32.DLL
0x41640000-416b9000 (PE) C:\WINDOWS\SYSTEM\SHELL32.DLL
0x416d0000-41719000 (PE) C:\WINDOWS\SYSTEM\SHLWAPI.DLL
0x41940000-4196f000 (PE) C:\PROGRAM FILES\COMMON
FILES\INSTALLSHIELD\PROFESSIONAL\RUNTIME\09\00\INTEL32\IGDI.DLL
0x4196f000-419c9000 (PE) E:\ISP03A9.TMP\_SETUP.DLL
0x419d0000-419df000 (PE) C:\WINDOWS\SYSTEM\UXTHEME.DLL
0x41a50000-41a5c000 (PE) C:\WINDOWS\SYSTEM\CRYPT32.DLL
Threads:
process tid prio
0000000a (D) D:\setup.exe
0000000c 0
0000000b 0 <==
WineDbg terminated on pid a
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-07-12 06:03 -------
Mike,
After some research, I would offer the following assertions, which may need
verification:-
1. On systems that do not have the RDTSC instruction, the High Performance
Counter is fed from a chip at 1.193182 MHz. So, maybe the fall-through value
for frequency->s.LowPart of 1000000 might more accurately be set to 1193182;
2. On systems that do have the RDTSC instruction, the values that
QueryPerformanceCounter() and QueryPerformanceFrequency() return should be
individual clock-cycles and Hz, respectively; i.e. the divisions by 1000 would
seem to be wrong. My supporting evidences for this assertion are:-
a) see http://www.devx.com/SummitDays/Article/16293/1763;
b) RP8 works well on my system if I remove the scaling-down of counter->QuadPart
and frequency->QuadPart from /dlls/kernel/cpu.c.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1215
------- Additional Comments From burpmaster(a)truffula.net 2003-06-12 23:15 -------
Created an attachment (id=427)
--> (http://bugs.winehq.com/attachment.cgi?id=427&action=view)
Workaround in FreeBSD
Well, tracking down all the instances where wine does this is hard, or at least
not as easy as grepping for "recursive call" in the FreeBSD source tree.
So here is a hack to work around this problem by allowing some recursion. Just
apply this patch in /usr/src/lib/libc/stdlib, then cd .., and do make && make
install.
With this patch applied, I no longer get random crashes due to the recursive
call error. Programs which crashed immediately from this error also work now.
I haven't noticed any side-effects from this patch.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1865
Summary: installation error
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: strattonbrazil(a)hotmail.com
When I do the configure or the make install I always get the error:
In file included from /usr/include/openssl/ssl.h:179,
from internet.h:36,
from cookie.c:39:
/usr/include/openssl/kssl.h:136: error: syntax error before '*' token
/usr/include/openssl/kssl.h:149: error: syntax error before '*' token
/usr/include/openssl/kssl.h:150: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:152: error: syntax error before '*' token
/usr/include/openssl/kssl.h:153: error: syntax error before '*' token
/usr/include/openssl/kssl.h:155: error: syntax error before '*' token
/usr/include/openssl/kssl.h:157: error: syntax error before '*' token
/usr/include/openssl/kssl.h:159: error: syntax error before '*' token
/usr/include/openssl/kssl.h:167: error: syntax error before '*' token
In file included from internet.h:36,
from cookie.c:39:
/usr/include/openssl/ssl.h:909: error: syntax error before "KSSL_CTX"
/usr/include/openssl/ssl.h:931: error: syntax error before '}' token
make[2]: *** [cookie.o] Error 1
make[2]: Leaving directory `/home/default/temp/wine-20031118/dlls/wininet'
make[1]: *** [wininet/__install__] Error 2
make[1]: Leaving directory `/home/default/temp/wine-20031118/dlls'
make: *** [dlls/__install-lib__] Error 2
I'm running Fedora and I can't the installation to finish. What exactly is
going wrong?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1536
------- Additional Comments From corentin.fougeray(a)wanadoo.fr 2003-06-12 15:27 -------
I also have this problem. I use a french MS Natural Keyboard Pro (with euro
key). Wine says it doesn't detect my keyboard layout but i can run the notepad
(keyboard responding). But for other applications (including games) no keyboard
: what i type is only printed in the console. I use Linux Mandrake 9.2 with Wine
20031118.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1861
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-05-12 10:51 -------
Sorry, but this bug report tells us nothing, that fixme message does not cause
fatal errors, it is simply a reminder to the developers to improve that function
later. It cannot cause a crash. You will need to debug this program.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=251
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 01:03 -------
probably long gone bug.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=327
Bug 327 depends on bug 251, which changed state.
Bug 251 Summary: codeweavers-wine does not install regapi and uninstaller
http://bugs.winehq.com/show_bug.cgi?id=251
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1860
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2003-05-12 00:47 -------
no content.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1596
------- Additional Comments From bendees(a)cox.net 2003-04-12 20:48 -------
Sorry for the delay. I've since determined that my previous assertion was
wrong: this program doesn't work at all. It looks like it uses it's own
communications DLL's, presumably for security, that don't work under Wine.
I'll be happy to continue to test the GUI difficulties that I was having if
anyone's interested, but I don't see any way of getting this program to work
under Wine and I've decided to use an alternative web-based method instead.
I don't know what to do with this bug, though, whether I should resolve it or
let it stay.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2003-04-12 14:03 -------
Could you perhaps write a test case for that error, e.g. in
dlls/user/tests/wsprintf?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1809
------- Additional Comments From engelbert.gruber(a)ssg.co.at 2003-03-12 22:44 -------
wd97 setup works on 20031118 BUT needs 2 hours on 600MHz to finish.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1863
Summary: VBScript Regular Expression parser: cannot access
results
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ed-winebug(a)leafe.com
I'm using the 20031016 release of Wine on RH8. I have some Visual FoxPro code that needs to
parse regular expressions. The only way to do that is to instantiate a VBScript.RegExp object. The
VBScript classes are part of the Windows Script Host, so I downloaded the Windows Script Host
v5.6 from http://tinyurl.com/b81y, and installed it into Wine without any problems.
The VBScript.RegExp has a pretty clunky interface; it requires several layers of sub-object to get
the results. Here's a sample of the code you need to get a regular expression match. In it, I'm
trying to extract the digits in the middle of a serial number:
loRegEx = CREATEOBJECT("VBScript.RegExp")
loRegEx.Pattern = "[a-z]+([0-9]+)[a-z]+"
loExtract = loRegEx.Execute("The serial number is zx8392ks")
loResult = loExtract.Item(0)
* This next line throws an error
lcDigits = loResult.SubMatches(0)
RETURN lcDigits
If you run that code in Visual FoxPro under Wine, it proceeds along fine until the line indicated.
Trying to access the SubMatches child object of the result item always results in an error message
that reads:
OLE error code 0x80004005: Unknown COM status code
This isn't very informative to me, but I'm hoping that someone here will know how to fix this.
Without being able to access the SubMatches object, using Regular Expressions in VFP is
impossible. I've tried all sorts of expressions and patterns, and they all work well running VFP in
Windows, but throw an error when running under Wine.
In my wine config file, I have the following settings:
; Visual FoxPro 8:
[AppDefaults\\vfp8.EXE\\Version]
"Windows" = "win2k"
[AppDefaults\\vfp8.EXE\\DllOverrides]
"oleaut32" = "native, builtin"
"odbc32" = "native"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 19:03 -------
I've managed to get Steam up and running--that would probably mean that this is
*not* a bug.
Just a couple of quick steps to resolve the crash that follows shortly after
those lines:
Download and install (not sure if this is mandatory, but on a hunch as to the
CoCreateInstance message):
http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbr…
Then tweak the DllOverrides... Here's a setup that was working for me (it's a
hacked together list, it's quite likely I could do it cleaner, I just did a
one-pass brute force thing)...
[AppDefaults\\Steam.exe\\DllOverrides]
"*comctl32" = "builtin"
"mapi" = "native, builtin"
"mapi32" = "native, builtin"
"ole32" = "native, builtin"
"compobj" = "native, builtin"
"ole2" = "native, builtin"
"ole2nls" = "native, builtin"
"ole2conv" = "native, builtin"
"ole2prox" = "native, builtin"
"ole2thk" = "native, builtin"
"storage" = "native, builtin"
"olepro32" = "native, builtin"
"rpcrt4" = "native"
"oleaut32" = "native"
"msvcrt" = "native, builtin"
"wininet" = "native"
"setupapi" = "native, builtin"
"devenum" = "native, builtin"
"quartz" = "native, builtin"
"urlmon" = "native"
"shdocvw" = "native"
"jscript" = "native, builtin"
"wintrust" = "native, builtin"
"shlwapi" = "native, builtin"
"secur32" = "native, builtin"
"crypt32" = "native"
"ddraw" = "native, builtin"
"shlwapi" = "native, builtin"
"*user.exe" = "native,builtin"
"*" = "builtin, native"
Now to get hl.exe running! ;)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1861
Summary: fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal
yet.
Product: Wine
Version: 20011108
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P4
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: chandleg(a)wizardsworks.org
This is an application for a Tax Company, who is getting ready to gear up for
Tax Season. The exact Error is:
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
It's an immediate fail, Please let me know what other info you need.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
------- Additional Comments From ajfrantz(a)comcast.net 2003-02-12 12:04 -------
I'm running into the same problem with CVS build from last night. I'm going to
do some debugging work tonight to see if I can sort this out--that will let us
know what's getting messed up. I'm looking at the source of the function, and,
well it looks pretty straightforward... Unless a define got messed up
somewhere (unlikely, I would think) I can't see what the problem would be.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1860
Summary: download
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mester.gulerod(a)mail.dk
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-01-12 17:02 -------
Yeah, that would be good. I don't have a cross compiler setup at the moment
though. I'll try and remember to talk to some people who do, writing the test
case isn't the hard part, getting it into EXE form is.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-01-12 16:05 -------
Mike,
The value of cpuHz on my system is 451083000 - i.e. nicely consistent with a
nominal clock speed of 450MHz.
Does the 'frequency' structure mentioned in that section of Wine code actually
exist in that form in Windows and, if so, is it accessible? I have a dual-boot
system (SUSE 9.0/Win98SE), so if a simple test program could be written to
display the value of frequency->QuadPart under Windows, it would be possible to
see what values different speed machines return - which ought to make it
possible to refine Wine's formula for it accordingly.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1859
Summary: clicking on "disk" crashes "HEX WOKRSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) click on "Disk"
5) select "open drive"
expected result: wine does not work with real disks... therefore it should
ignore RAW access to the disk
real result: steps from above cause wine and app to crash
workaround: do not slick on "disk" --> "open drive"
wine version: CVS wine-20031129
system: RH9 kernel 2.4.20-8
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1858
Summary: tab switching does not work for "HEX WORKSHOP 4.10"
Product: Wine
Version: CVS
Platform: Other
URL: http://www.hexworkshop.com/ or
http://www.bpsoft.com/downloads/index.html (to download)
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: primorec(a)sbcglobal.net
Steps to reproduce the bug:
1) download demo version from the http://www.bpsoft.com/downloads/index.html
2) install demo version with command "wine hw32v410.exe" (InstallShield work
flawlessly !!)
3) start the application with:
wine "/home/you/c/Program Files/BreakPoint Software/Hex Workshop 4.1/hworks32.exe"
4) open binary file_1
5) open another binary file_2
expected result: user should be able to switch between file_1 and file_2 by
clicking with left mouse button on tab "file_1" or "file_2"
real result: last loaded file is active and clicking on the tab does not switch
from one file to the other one
workaround: user can switch between files going through pulldown menue
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1857
Summary: cs1005.exe (cs 1.5 patch utility) reports kernel32.dll
missing
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kyrsjo(a)solution-forge.net
When i try to upgrade cs to version 1.5 on my Fedora Core 1 system, i get an
error message stating:
"Error" "Could not load the DLL libary C:\WINDOWS\SYSTEM\kernel32.dll Bad exe
format for" "Ok"
when i take a look in my .wine/c/windows/system, it turn out that there is very
few .dll's there, and certainly no kernel.dll
when i run a quick locate kernel.dll, it turns out to be in
/usr/lib/wine/wine/kernel32.dll.so
tried linking this one into the windows\system folder, but that did'nt work out
as well.
I installed from an fedora core 1 rpm, and had to fiddle with the prelinker
(just a config file, but i'm no hacker) to get it working.
The install prog works fine, and cs 1.0 menues also.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1479
------- Additional Comments From soontir_fel(a)hotmail.com 2003-30-11 15:06 -------
Confirmed on 5.1 with 2003-11-18 WINE....but BugZilla won't let me confirm it
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-30-11 14:36 -------
What is the value of cpuHz before the division on your system then? If you look
at the code you can see this comment:
#if defined(__i386__) && defined(__GNUC__)
if (IsProcessorFeaturePresent( PF_RDTSC_INSTRUCTION_AVAILABLE )) {
/* The way Windows calculates this value is unclear, however simply
using the CPU frequency
gives a value out by approximately a thousand. That can cause some
applications to crash,
so we divide here to make our number more similar to the one Windows
gives */
frequency->QuadPart = cpuHz / 1000;
return TRUE;
}
#endif
As for simply switching it off, well, that's a possibility but some apps use
this value to calibrate themselves (like games) so I'm not sure we want to rip
it out just yet.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mike(a)theoretic.com
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=280
------- Additional Comments From marcus(a)jet.franken.de 2003-30-11 13:49 -------
note: the event created/signaled debuglines come from my SUSE rpms. sorry for
leaving debug in.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1587
------- Additional Comments From juan_lang(a)yahoo.com 2003-30-11 10:51 -------
Pls make sure you're using builtin network dlls, iphlpapi especially since it's
new as of wine snapshot 20030618. I have in my ~/.wine/config's DllOverrides:
"iphlpapi" = "builtin, native"
Others you might want to check are winsock and wsock32.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=280
------- Additional Comments From wine(a)staerk.de 2003-30-11 06:21 -------
Created an attachment (id=425)
--> (http://bugs.winehq.com/attachment.cgi?id=425&action=view)
No network communication with IOMeter
Download the latest (2003.05.10) IOMeter package for Windows from
www.iometer.org. Extract the debug versions of the frontend (IOMeter.exe) and
the backend (dynamo.exe) to your fake_windows-directory.
Call "wine c:\\iometer.exe" and, in another shell,
call "wine c:\\dynamo.exe /i 127.0.0.1".
You will find that both programs work correctly (congratulations), but do not
see each other accross the network. Each time, dynamo.exe tries to connect, the
msg appears:
event created : name=L"__SystemHeapEvent", initial is 0
event_signaled : name=L"__SystemHeapEvent"signaled is 1
The relevant error msg seems to me:
fixme:mswsock:AcceptEx not implemented
I do the port of IOMeter to Wine for the Maintainer of the project, Daniel
Scheibli. You may ask me anything about iometer.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=343
------- Additional Comments From tmpfreire(a)terra.com.br 2003-28-11 10:37 -------
Let me continue my report:
(wine 20031118)
(NOT using "ole32" = "native")
This is what wine prints when I:
a) Open word;
b) Do nothing;
c) Close word.
notes:
i) word tries to save normal.dot, and says that the disk might be full or
read-only.
ii) It asks for me to save with another name displaying a dialog box.
iii) after I cancel, I tell it to close again and then word only asks me
whether I want to save normal.dot and I say 'no', then it closes.
iv)Displayed in the command line during this simple process:
fixme:x11drv:X11DRV_GetDeviceCaps (0x1c0): CAPS1 is unimplemented, will return
0
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
err:x11drv:X11DRV_CreateWindow invalid window width 1061764
fixme:storage:StorageImpl_Commit (4): stub!
fixme:storage:StorageImpl_Commit (4): stub!
fixme:storage:StorageImpl_Commit (4): stub!
fixme:hook:NotifyWinEvent (32774,0x30032,52,3)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,33)-stub!
fixme:hook:NotifyWinEvent (32774,0x30032,26,7)-stub!
fixme:hook:NotifyWinEvent (32777,0x30032,52,0)-stub!
fixme:hook:NotifyWinEvent (32774,0x30032,52,3)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,16)-stub!
fixme:hook:NotifyWinEvent (32773,0x30032,-4,17)-stub!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1856
Summary: Half-Life mod : Natural Selection sound
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: sirlagz(a)westnet.com.au
On the versions after 20030709, the sound on this mod is slowed down a lot.
only occurs on this mod though
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1855
Summary: TzSpecificLocalTimeToSystemTime
SystemTimeToTzSpecificLocalTime don't use hour for
daylight saving
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: eric(a)jesover.net
_DayLightCompareDate don't use the hour in TIME_ZONEINFORMATION for the swith
Eric JESOVER
eric(a)jesover.net
--- time.c Wed Nov 26 19:24:13 2003
+++ timenew.c Wed Nov 26 19:21:36 2003
@@ -187,7 +187,8 @@
/***********************************************************************
* _DayLightCompareDate
*
- * Compares two dates without looking at the year
+ * Compares two dates without looking at the year must look at time
+ * for daylight saving not changing at 00:00
*
* RETURNS
*
@@ -294,6 +295,9 @@
if (date->wDay > limit_day)
return 1;
+
+ if( date->wHour < compareDate->wHour )
+ return -1;
return 0; /* date is equal to the date limit. */
}
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1854
Summary: IpHlpDllEntry: This is an CHICAGO product.
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tuinslak(a)pandora.be
When I try to start Warcraft3, from an other pc (in network), I get this error.
some other programs, I try to open, give the same error. I updated my wine to
wine-20031118, and it gives the same error. (It gives an error about my keyboard
too, but that's not a problem.)
It's this error:
IpHlpDllEntry: This is an CHICAGO product.
err:module:LdrInitializeThunk Main exe initialization failed, status c0000142
I run Gentoo linux, kernel: 2.4.20-gentoo-r8
"yeri@fireball (~/Warcraft III): wine War3.exe
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (Belgian keyboard layout) for scancode mapping.
Please define your layout in dlls/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
fixme:file:DeviceIoControl Unimplemented control 1 for VxD device VDHCP
fixme:file:DeviceIoControl Unimplemented control 116 for VxD device VNB
IpHlpDllEntry: This is an CHICAGO product.
err:module:LdrInitializeThunk Main exe initialization failed, status c0000142"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1853
Summary: problem with sound (wodUpdate) prevents Space Empires IV
from running
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jeremy(a)angelar.com
CC: jeremy(a)angelar.com
Starting Space Empires IV Gold with wine-20031108. The good news is that icons
now draw in this game. The bad news is that as soon as it tries to play a
sound, it gets caught in a loop putting out this message repeatedly:
err:wave:wodUpdatePlayedTotal ioctl(/dev/dsp, SNDCTL_DSP_GETOSPACE) failed
(Broken pipe)
Sound worked _before_ in this game. This is on a Mandrake 9.2 box, Athlon
1.4GHz, Sound Blaster Live! card, which is correctly configured to play sounds
under linux. Video is an AGP GeForce2 MX. Let me know if any other information
would be useful.
When I can keep the game up long enough to turn off sound inside it, it runs great!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
AAnarchYY(a)netscape.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1852
------- Additional Comments From b.rowlingson(a)lancaster.ac.uk 2003-25-11 08:58 -------
Renamed to 8.3 compliant filename (WinBGS14.exe) and it works fine.
However, some problems running the program that doubtless will result in more
bug reports later....
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
------- Additional Comments From AAnarchYY(a)netscape.net 2003-25-11 08:04 -------
Got similar results with cvs build. only difference was:
err:region:CombineRgn Invalid rgn=(nil)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1852
Summary: LoadModule16 error running WinBUGS
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: b.rowlingson(a)lancaster.ac.uk
Using wine-20031118-1rh8winehq rpm from sourceforge page on RH8 box.
Trying to run WinBUGS (http://www.mrc-bsu.cam.ac.uk/bugs/winbugs/WinBUGS14.exe)
- error produced is:
$ wine /nobackup/rowlings/CD/WinBUGS14.exe
err:module:MODULE_LoadModule16 Serious trouble. Just loaded module
'Z:\nobackup\rowlings\CD\WinBUGS14.exe' (hinst=0x11af), but can't get module
handle. Filename too long ?
winevdm: can't exec 'Z:\nobackup\rowlings\CD\WinBUGS14.exe': error=6
Occurs when run as root, or as normal user.
I can get wine to run other exe files -even with longer path and filenames, so
I dont think it is a case of 'filename too long'.
Baz
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1851
Summary: err:clipping:CLIPPING_UpdateGCRegion hVisRgn is zero
when running radio(a)netscape.exe
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: AAnarchYY(a)netscape.net
Installed radio@netscape plus. That installed fine, First run it installed Real
Player and that also went fine. Then as it tried to connect to the server it
hangs for about 5 seconds, spits out some errors, and terminates.
[kilroy@localhost Program]$ wine radio\(a)netscape.exe
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 112 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 112 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:local:LOCAL_GetBlock not enough space in GDI heap 10c7 for 24 bytes
err:clipping:CLIPPING_UpdateGCRegion hVisRgn is zero. Please report this.
I am using a fresh compile of build 20031118. Mandrake 9.1 kernel 2.4.21-0.13mdk
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1850
Summary: BDE 5.2.0.2 Install Crashes
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cristao(a)estadao.com.br
+ Wine version 20031016 and 20031118
+ Red Hat Linux 9 in PIII 500MHz
+ gcc 3.2.2-5
+ Don't using Windows
+ Problem: BDE 5.2.0.2 Setup Install Utility
(http://www.nlpark.com/downloads/BDESetup.EXE)
+ Command line: wine BDESetup.exe
+ Re-running the program with "--debugmsg +relay" still don't works
When the installation gets 80%-90%, it crashes saying that KERNEL32 is a BAD
format EXE.
In earlier versions of wine (I've tested with 20030115, 20030618 and 20030811),
it works correctly.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1797
dave(a)aagames.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From dave(a)aagames.co.uk 2003-23-11 10:08 -------
This now works for me...
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1198
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
------- Additional Comments From spetreolle(a)yahoo.fr 2003-22-11 22:39 -------
Is this bug still valid ?
In order to remove the amstream.dll problem (Video playing error box),
you could try to reinstall ActiveMovie.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1849
Summary: heap error while trying to run TrueSync Desktop
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: plison(a)agl.ucl.ac.be
I'm trying to run the "TrueSync Desktop" app (the equivalent of Hotsyncfor
non-Palm handhelds, but without any Linux port, unfortunately), and I get the
following error:
err:heap:HEAP_ValidateInUseArena Heap 40360000: in-use arena 403e7eb8next block
has PREV_FREE
flagwine: Unhandled exception (thread 0009), starting debugger...
The loading screen "TrueSync Desktop" is shown, but it doesn't go anyfurther.
I'm using wine-20031016 (compiled with the -npt1 option), and a debiandistro
with a custom kernel compiled with 2,6,0-test9.
Most windows app. I tested ran without problem. Please note that I tried Wine
for only a few weeks, so I'm quite a newbie on the matter.
Do you have any idea on how to fix this? Thank you for your help,
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1848
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1848
Summary: User32 - TrackPopupMenu returns wrong results
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows TrackPopupMenu returns true, if the user clicks outside of the
menu (the menu disappears - menu is being canceled). With WINE the
TrackPopupMenu returns false in such a case, which should indicate the API call
has failed (which hasn't). Calling GetLastError gives you a weird error (usually
access denied). The problem lies in controls/menu.c. It should only return
false, if the wine server call failed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1847
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1086
------- Additional Comments From brett.boren(a)rttc.army.mil 2003-21-11 06:55 -------
Can duplicate this bug regularly on a win16 program I use.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1847
Summary: User32 - ReleaseCapture returns wrong results
Product: Wine
Version: 20030813
Platform: All
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows, calling ReleaseCapture without having captured the mouse still
returns TRUE. WINE returns FALSE. Currently I hardly can imagine a situation
this API call could fail. The only exception may be calling ReleaseCapture
inside WM_CAPTURECHANGED, which is sent inside ReleaseCapture. (But I never
tried this...)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1846
Summary: Microsoft Office 2000 on CVS 19th. nov 2003
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: eleknader(a)phnet.fi
Microsoft Office 2000 installation is broken. Tested wine versions:
wine-20031016
cvs 19th. nov 2003
Installation goes normally. Installed Word, Excel, Powerpoint without Office
Assistant.
End of installation: Installer asks whether to shut down now or later. I tried
both, shut down later and shut down now. Both result same error:
First startup of Winword or Excel: starts configuring installation (this
should not happen, because the components I chose, where to be installed
fully, and the rest 'Not available'). After this, application starts up and
says in a dialog 'Missing Registry Information': Required registy information
is missing, and this application cannot be run. Please rerun setup to correct
this problem.
I also tried running wineboot after install (before trying to start), and this
results the same problem.
Since this seems like a register problem, I'll try to run installation on a
previous version of wine to see what is the difference between the registers.
Full debug log available if necessary.
Eleknader
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |20030813
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
andy(a)rosen-berg.de changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC
Version|unspecified |20030813
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1845
Summary: Return values of CharUpperA and CharLowerA
Product: Wine
Version: unspecified
Platform: Other
URL: http://www.apis.de
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
The return values for CharUpperA and CharUpperB should return 32-bit ints with
the upper 16 bits being 0 if the operand is a single character. Passing single
characters with the 8th-bit being set, may result in 32bit results with the
upper 16 bits set. This may confuse apps taking the whole 32bit value. We
detected this bug, while testing our software with WINE.
The problem seems to lie in dlls/user/lstr.c (sign extension problem?).
Looking at the code in lstr.c I saw a SetLastError. This may destroy a
SetLastError of another call. Here is an excerpt from the Microsoft
documentation for this call:
------------
The CharUpper function converts a character string or a single character to
uppercase. If the operand is a character string, the function converts the
characters in place.
....
There is no indication of success or failure. Failure is rare. There is no
extended error information for this function; do not call GetLastError.
------------
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1844
Summary: Point Size in DLG_TEMPLATE may be negative (with
DS_SETFONT)
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.apis.de
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andy(a)rosen-berg.de
Within Windows the pointSize parameter (for the FONT in the DLG_TEMPLATE
struct) may be a signed 16-bit integer. With WINE this integers get's
converted to an unsigned int resulting in huge font for the dialog. The size
of the dialog is being computed based on this font and results in invalid
parameters for CreateWindow, that may cause a termination of WINE. We detected
this problem testing our software with WINE.
If I understood things right the file dlls/user/dialog16.c contains the code
causing the problem:
Line 263 ....
if (result->style & DS_SETFONT)
{
result->pointSize = GET_WORD(p);"use a macro that gets signed 16bit
int"
p += sizeof(WORD);
result->faceName = p;
p += strlen(p) + 1;
TRACE(" FONT %d,'%s'\n", result->pointSize, result->faceName );
}
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1843
Summary: Printer error
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: maxis(a)codetel.net.do
when i run my application (one i wrote in delphi), the application runs fine,
but it shows a message "Cannot select default printer"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1841
Summary: wrong region drawn
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: medbi01(a)accpac.com
Dialog contains a bitmap. On redrawing the wrong half of the bitmap gets
redrawn; i.e. when exposing a region the area that was not exposed gets
repainted rather than the region exposed.
(The actual case that demonstrates this is part of the ACCPAC installation
program.)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:59 -------
closing
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:59 -------
not bug in wine, "feature" of battle.net, resolving invalid, see above notes..
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From Speeddymon(a)yahoo.com 2003-18-11 04:58 -------
Ok, well Im unsure why in the world I resolved this one as a duplicate, but
lets try resolving it as invalid instead.. If you have a problem with any
Blizzard game not connecting to battle.net using a cracked exe, see notes
above, if you are having a problem even getting Diablo II to run, unsing either
a cracked exe or the original, see Bug 926, and if you are having a problem
getting any other Blizzard game to even run, please open a new bug.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1840
Summary: Support for MSCMS.DLL?
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jvp(a)lateapex.net
This isn't a bug but rather a request for DLL support. The MS Color Management
System (mscms.dll) isn't included with WINE. Applications such as PhaseOne's
Capture One (http://www.c1dslr.com/) require it. Are there plans to support it?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1839
Summary: bad window border on mozilla
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
CVS version 2003/nov/17
I installed Mozilla 1.5 for Windows on top of wine.
Near the border of the window, it does not look fine.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1838
Summary: max payne setup doesn't work
Product: Wine
Version: CVS
Platform: PC
URL: http://www.rockstargames.com/maxpayne/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I'll attach the log and backtrace.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-16-11 17:03 -------
The problem with the autodetect must be in the program, no in wine, as there is
the same problem on windows. There a still a few things wrong, basicly the game
crashes from time to time. The most common one is this
Unhandled exception: page fault on read access to 0x0000000c in 32-bit code
(0x409ff447).
In 32-bit mode.
0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL): movl
0x0(%eax,%edx,1),%eax
Wine-dbg>bt
Backtrace:
=>0 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL) (ebp=406bf7f8)
1 0x40a001a9 (D3D8.DLL.EntryPoint+0x16cc9 in D3D8.DLL) (ebp=406bf900)
2 0x409f7d38 (D3D8.DLL.EntryPoint+0xe858 in D3D8.DLL) (ebp=406bf934)
3 0x10069eea (LS3DF.DLL.dbgPrintf1+0x1c5a in LS3DF.DLL) (ebp=406bf9dc)
4 0x10046ca0 (LS3DF.DLL.?LineLineIntersect@@YG_NABUS_vector@@000AAM1@Z+0x172e0
in LS3DF.DLL) (ebp=00000000)
Wine-dbg>
I usually get it if I have a terrible car crash, or not long after running
somebody over.
I also got this one
Unhandled exception: assertion failed in 32-bit code (0x400b6d71).
In 32-bit mode.
0x400b6d71 (MSVCRT.DLL.frexp+0xc71): movl %edx,%ebx
Wine-dbg>bt
Backtrace:
=>0 0x400b6d71 (MSVCRT.DLL.frexp+0xc71) (ebp=4202ff54)
1 0x40046b8b (_end+0x4044e7b) (ebp=4202ff74)
2 0x400b6b04 (MSVCRT.DLL.frexp+0xa04) (ebp=4202ff94)
3 0x400b81e0 (NTDLL.DLL.atol+0x220) (ebp=420300c4)
4 0x400b00ad (_end+0x40ae39d) (ebp=42030104)
5 0x412d32f7 (DSOUND.DLL.DllCanUnloadNow+0x2687 in DSOUND.DLL) (ebp=42030144)
6 0x412d3420 (DSOUND.DLL.DllCanUnloadNow+0x27b0 in DSOUND.DLL) (ebp=42030158)
7 0x408d6515 (WINMM.DLL.mmsystemGetVersion+0x175 in WINMM.DLL) (ebp=42030180)
8 0x408d6697 (WINMM.DLL.mmsystemGetVersion+0x2f7 in WINMM.DLL) (ebp=420301ac)
9 0x408d67b7 (WINMM.DLL.mmsystemGetVersion+0x417 in WINMM.DLL) (ebp=420301c8)
10 0x404f826c (KERNEL32.DLL.GetDOSEnvironment16+0x3cc in KERNEL32.DLL)
(ebp=4203029c)
11 0x40231f14 (NTDLL.DLL.RtlVerifyVersionInfo+0xa44 in NTDLL.DLL) (ebp=42030ad4)
12 0x40044600 (_end+0x40428f0) (ebp=42030bd4)
13 0x40168a37 (MSVCRT.DLL.strftime+0x3d447) (ebp=00000000)
Wine-dbg>
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2003-16-11 12:00 -------
D3DZBUFFERTYPE of 2 is W buffering which GL doesnt support (well, we dont
support it in wine, certainly). As per my previuos update, disable it and see
if the graphics improve.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 11:14 -------
OK, the graphics really sucks, but it's all bugs in the game, the transparent
buildings, and cars. Unless this isn't caused on windows by the fact that I only
have a 8mb video ram on my windows box, the only real wine bug is that the game
crashes in wine, you can find the backtrace in my previous post.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 11:05 -------
The flashing eyes aren't a wine bug, there a bug in the game, they appear on
directx 9.0b on windows.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
------- Additional Comments From puoti(a)inwind.it 2003-14-11 10:37 -------
Log with todays CVS
fixme:d3d:IDirect3DDevice8Impl_SetRenderState Unrecognized/Unhandled
D3DZBUFFERTYPE value 2
lots identical of messages
fixme:d3d:IDirect3DDevice8Impl_SetRenderState Unrecognized/Unhandled
D3DZBUFFERTYPE value 2
wine: Unhandled exception (thread 000f), starting debugger...
WineDbg starting on pid e
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'C:\Program Files\MafiaDemo\Game.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x40200000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40880000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40810000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x406e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x408b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40930000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\D3D8.DLL' (0x409e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL' (0x41290000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT8.DLL' (0x41270000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL' (0x412c0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\OGG.DLL' (0x412ea000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL' (0x41400000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\VORBIS.DLL'
(0x412f7000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\VORBISFILE.DLL'
(0x40a28000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\RW_DATA.DLL'
(0x41430000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\LS3DF.DLL'
(0x10000000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\IJOY.DLL' (0x41445000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\IPHLPAPI.DLL' (0x414b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WS2_32.DLL' (0x41490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WSOCK32.DLL' (0x41470000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MAFIADEMO\INET.DLL' (0x41455000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x41590000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x41770000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x417c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x417a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x418f0000)
Unhandled exception: page fault on read access to 0x0000000c in 32-bit code
(0x409ff447).
In 32-bit mode.
0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL): movl
0x0(%eax,%edx,1),%eax
Wine-dbg>bt
Backtrace:
=>0 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL) (ebp=406bf7f8)
1 0x40a001a9 (D3D8.DLL.EntryPoint+0x16cc9 in D3D8.DLL) (ebp=406bf900)
2 0x409f7d38 (D3D8.DLL.EntryPoint+0xe858 in D3D8.DLL) (ebp=406bf934)
3 0x10069eea (LS3DF.DLL.dbgPrintf1+0x1c5a in LS3DF.DLL) (ebp=406bf9dc)
4 0x10046ca0 (LS3DF.DLL.?LineLineIntersect@@YG_NABUS_vector@@000AAM1@Z+0x172e0
in LS3DF.DLL) (ebp=00000000)
Wine-dbg>b
Breakpoint 1 at 0x409ff447 (D3D8.DLL.EntryPoint+0x15f67 in D3D8.DLL)
Wine-dbg>quit
WineDbg terminated on pid e
[ivan@localhost MafiaDemo]$
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1091
------- Additional Comments From micha(a)freemail.com.au 2003-14-11 09:34 -------
Dimi,
Sorry I was offline for some time. Attached the demo again.
I checked, the problem still exists as of 20031016.
Btw, Jason may be right. It does only affect some of the controls,
in my case the static but not the button.
I am still not reachable under the registered email address.
Temporarily I am at: mick37(at)gmx.de
Micha
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1755
bruce.armstrong(a)teamsybase.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bruce.armstrong(a)teamsybase.c
| |om
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1755
------- Additional Comments From bruce.armstrong(a)teamsybase.com 2003-14-11 09:33 -------
Have you looked at bug 807 to see if this is a duplicate of that (which is now
fixed)?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1837
------- Additional Comments From the-fallen(a)web.de 2003-14-11 08:33 -------
The complete InstMsiA consoleoutput with -debugmsg warn+all
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA ANSI BUILD
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Running on Win9X.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Attempting to get function GetWindowsDirectoryA/W.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Successfully loaded the specified procedure
from kernel32.dll.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of mspatcha.dll is older or
equal than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msi.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msihnd.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msimsg.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:module:load_builtin_dll cannot open .so lib for builtin L"msimsg.dll":
/usr/lib/wine/lib/wine/msimsg.dll.so: cannot open shared object file: No such
file or directory
warn:module:load_dll Failed to load module L"C:\\WINDOWS\\SYSTEM\\msimsg.dll";
status=c0000135
warn:ver:VERSION_GetFileVersionInfo_PE Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:ver:VERSION_GetFileVersionInfo_16 Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unable to get version info for
C:\WINDOWS\SYSTEM\msimsg.dll. Error 2.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msimsg.dll is newer than
existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found unused RunOnce entry : InstMsi0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found unused RunOnce entry : InstMsi4
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Attempting to create folder C:\WINDOWS\Installer.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Successfully loaded the specified procedure
from msi.dll.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Temporary store located at :
C:\WINDOWS\Installer\InstMsi14
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe, MsiExec.exe /regserver
/qn)
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was:
0.warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Found MSI Database: instmsi.msi
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA No localized transform available.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\AppPatch\msimain.sdb not found.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA msimain.sdb in the package will be installed.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Running upgrade to MSI from temp files at
C:\WINDOWS\Installer\InstMsi14. [Final Command: 'X:\IXP001.TMP\msiinst.exe /i
instmsi.msi MSIEXECREG=1 /m /qb+! INSTALLSDB=1']
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe,
X:\IXP001.TMP\msiinst.exe /i instmsi.msi MSIEXECREG=1 /m /qb+! INSTALLSDB=1)
warn:debugstr:OutputDebugStringA
warn:storage:StgStreamImpl_Read read 688 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 38 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 664 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:module:load_builtin_dll cannot open .so lib for builtin L"MSCOREE.dll":
/usr/lib/wine/lib/wine/mscoree.dll.so: cannot open shared object file: No such
file or directory
warn:storage:StgStreamImpl_Read read 420 instead of the required 1024 bytes !
warn:module:load_builtin_dll cannot open .so lib for builtin L"SAGE.dll":
/usr/lib/wine/lib/wine/sage.dll.so: cannot open shared object file: No such file
or directory
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 44 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 132 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 252 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 180 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 32 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 8 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was: 1603.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\mspatcha.dll : 5.1.2600.0
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of mspatcha.dll is older or
equal than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msi.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msi.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA C:\WINDOWS\SYSTEM\msihnd.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msihnd.dll is older or equal
than existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA X:\IXP001.TMP\msimsg.dll : 2.0.2600.2
warn:debugstr:OutputDebugStringA
warn:module:load_builtin_dll cannot open .so lib for builtin L"msimsg.dll":
/usr/lib/wine/lib/wine/msimsg.dll.so: cannot open shared object file: No such
file or directory
warn:module:load_dll Failed to load module L"C:\\WINDOWS\\SYSTEM\\msimsg.dll";
status=c0000135
warn:ver:VERSION_GetFileVersionInfo_PE Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:ver:VERSION_GetFileVersionInfo_16 Could not load
"C:\\WINDOWS\\SYSTEM\\msimsg.dll"
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unable to get version info for
C:\WINDOWS\SYSTEM\msimsg.dll. Error 2.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA InstMsi version of msimsg.dll is newer than
existing.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Finished install.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Unregistering the installer from the temporary
location.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA RunProcess (MsiExec.exe, MsiExec.exe
/unregserver /qn)
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Wait succeeded for process. Return code was:
0.warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Deleting the RunOnce value for registering the
installer from the temp. folder.
warn:debugstr:OutputDebugStringA
warn:debugstr:OutputDebugStringA MsiInst:
warn:debugstr:OutputDebugStringA Exiting msiinst.exe with error code 1603.
warn:debugstr:OutputDebugStringA
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1837
Summary: Strange errors while installing InstMsiA
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P4
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: the-fallen(a)web.de
Hi!
When i attempt to install Msi with the InstMsiA installer i get very strange
errorcodes in the warn+all console output which look like this:
[quote]
warn:storage:StgStreamImpl_Read read 8 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 34 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 52 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 58 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 394 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 318 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 632 instead of the required 1024 bytes !
[/quote]
I dont know what this means and i got those errors with several other programs
which all use installshield. Can anybody help me? I use mostly native dlls but
no original registry.
THX in advance!
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1763
------- Additional Comments From raulschmidtf(a)ig.com.br 2003-13-11 14:44 -------
Wine 20031016 solves part of the problem. Now setup for Lotus Notes stops at 66%.
But the program can run slowly in a wine/windows install. Autocad continues to
fail to install or run. I previously had the two programs running OK in red hat
7 and it's strange that they don't run anymore.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From james(a)icionline.ca 2003-13-11 14:43 -------
Hi,
I guess this isn't a very serious problem for me afterall. I get the error
message repeatedly while the game is running, but everything seems to work
great! I just finished playing a multiplayer game with my brother also.
TreadMarks uses UDP for multiplayer games. I dont think TreadMarks even has IPX
support.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1831
seemueller(a)fhm.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|trivial |critical
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-13-11 13:11 -------
Hi,
ntstatus.h:#define STATUS_OBJECT_TYPE_MISMATCH 0xC0000024
Not sure what this means, though.
You should definitely retry with the IPX improvements submitted recently.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1226
------- Additional Comments From james(a)icionline.ca 2003-13-11 13:07 -------
I get this error after I load up the TreadMarks Demo v1.6.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1792
------- Additional Comments From x86zman(a)bigfoot.com 2003-13-11 05:41 -------
Max Payne (1) now Works Flawlessly with Wine-CVS_20031112 (well, it doesn't play
the cut-scenes but who cares ! :)))
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1810
x86zman(a)bigfoot.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #404 is|0 |1
obsolete| |
Attachment #405 is|0 |1
obsolete| |
------- Additional Comments From x86zman(a)bigfoot.com 2003-13-11 05:08 -------
Created an attachment (id=417)
--> (http://bugs.winehq.com/attachment.cgi?id=417&action=view)
a new Trace Log (Wine-CVS_20031112)
Here's a new Trace Log (Wine-CVS_20031112)... MaxPayne2 now almost loads - but
ceases, again - a second before the game starts. :(
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1831
seemueller(a)fhm.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |trivial
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-12-11 15:45 -------
Mike,
I have verified that RP8 does work under Windows on my system.
Changing the static initialiser to various values less than my speed had no
beneficial effect.
I have found that if frequency->QuadPart (in QueryPerformanceFrequency())
is changed to return a value of >= 1000000 (and, I would suggest, <
5000000), then the RM8 video works well. Of course, I have no idea what
this element represents, but I wonder whether it can be assigned a fixed
value of 1000000, rather than cpuHz / 1000(?).
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1410
------- Additional Comments From puoti(a)inwind.it 2003-12-11 12:19 -------
After a few minutes of trying to start the game, I get this
WineDbg starting on pid 8
Loaded debug information from ELF 'wine' ((nil))
No debug information in 32bit DLL 'C:\Program Files\Microsoft Games\StarLancer
Trial\lancer.exe' (0x400000)
No debug information in 32bit DLL 'NTDLL.DLL' (0x40200000)
No debug information in 32bit DLL 'KERNEL32.DLL' (0x40490000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x406d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40840000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40710000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x408b0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\BINKW32.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DINPUT.DLL' (0x40920000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSS32.DLL' (0x21100000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x409d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40960000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x40a90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x40ae0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x40a20000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\SRMEMORY.DLL' (0x40b6c000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x40bc0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x40bb0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40c90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x41560000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x415b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x41590000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x416f0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\LANGUAGE.DLL' (0x42050000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DMUSIC.DLL' (0x4a4a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RICHED32.DLL' (0x422c0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MP3DEC.ASI' (0x26f00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSA3D.M3D' (0x22100000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSA3D2.M3D' (0x22200000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDOLBY.M3D' (0x22700000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDS3DH.M3D' (0x22400000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDS3DS.M3D' (0x22300000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SH.M3D' (0x22a00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SL.M3D' (0x22900000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSDX7SN.M3D' (0x22b00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSEAX.M3D' (0x22500000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSEAX2.M3D' (0x22c00000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSFAST.M3D' (0x22600000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\MSSRSX.M3D' (0x22d00000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DSOUND.DLL' (0x4a4c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\DDRAW.DLL' (0x4cce0000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\SRD3D.DLL' (0x4a880000)
Loaded debug information from 32bit DLL 'C:\PROGRAM FILES\MICROSOFT
GAMES\STARLANCER TRIAL\W32SAL.DLL' (0x4d75c000)
No debug information in 32bit DLL 'C:\PROGRAM FILES\MICROSOFT GAMES\STARLANCER
TRIAL\WINVFX16.DLL' (0x4d723000)
Unhandled exception: assertion failed in 32-bit code (0x400b6d71).
In 32-bit mode.
0x400b6d71 (NTDLL.DLL.toupper+0x64d1): movl %edx,%ebx
Wine-dbg>bt
Backtrace:
=>0 0x400b6d71 (NTDLL.DLL.toupper+0x64d1) (ebp=4c880f54)
1 0x40046b8b (_end+0x4044e7b) (ebp=4c880f74)
2 0x400b6b04 (NTDLL.DLL.toupper+0x6264) (ebp=4c880f94)
3 0x400b81e0 (NTDLL.DLL.atol+0x220) (ebp=4c8810c4)
4 0x400b00ad (_end+0x40ae39d) (ebp=4c881104)
5 0x4a4db2b7 (DSOUND.DLL.DllCanUnloadNow+0x2687 in DSOUND.DLL) (ebp=4c881144)
6 0x4a4db3e0 (DSOUND.DLL.DllCanUnloadNow+0x27b0 in DSOUND.DLL) (ebp=4c881158)
7 0x408d6515 (WINMM.DLL.mmsystemGetVersion+0x175 in WINMM.DLL) (ebp=4c881180)
8 0x408d6697 (WINMM.DLL.mmsystemGetVersion+0x2f7 in WINMM.DLL) (ebp=4c8811ac)
9 0x408d67b7 (WINMM.DLL.mmsystemGetVersion+0x417 in WINMM.DLL) (ebp=4c8811c8)
10 0x404fb5cc (KERNEL32.DLL.GetDOSEnvironment16+0x3cc in KERNEL32.DLL)
(ebp=4c88129c)
11 0x40231f14 (NTDLL.DLL.RtlVerifyVersionInfo+0xa44 in NTDLL.DLL) (ebp=4c881ad4)
12 0x40044600 (_end+0x40428f0) (ebp=4c881bd4)
13 0x40168a37 (NTDLL.DLL.memcpy+0x60307) (ebp=00000000)
Wine-dbg
>So after turning the mouse I was able to play the game.
How did you do that?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1836
Summary: midtown madness trial doesn't work.
Product: Wine
Version: CVS
Platform: Other
URL: http://www.microsoft.com/games/midtown/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I'm attaching a ddraw log.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1827
vberon(a)mecano.gme.usherb.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |vberon(a)mecano.gme.usherb.ca
Status|ASSIGNED |NEW
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2003-12-11 09:26 -------
Oups, wrong assignee.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1827
vberon(a)mecano.gme.usherb.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2003-12-11 09:25 -------
Confirming, taking it.
The workaround doesn't keep the old definition of FAR after inclusion of ssl.h.
FAR is redefined as _WINE_FAR (as gcc -E says).
At least it gets to compile, but it's not sufficient to go into the tree.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1827
vberon(a)mecano.gme.usherb.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |traxtopel(a)hotpop.com
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2003-12-11 09:15 -------
*** Bug 1752 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1752
vberon(a)mecano.gme.usherb.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2003-12-11 09:15 -------
*** This bug has been marked as a duplicate of 1827 ***
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1769
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2003-12-11 09:15 -------
Same symptoms here on Fecora Core 1, but intermittently. Maybe 1 out of 10 tries
result in a failure.
Using setarch i386 wine app.exe works fine everytime though, although that app
doesn't spawn any other apps and is really simple.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1835
Summary: Running Microcap V on Linux
Product: Wine
Version: 20030813
Platform: PC
URL: http://javierlinares.com/software/wine/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: javier(a)javierlinares.com
When I try to run Microcap a small window is opened and when I click the only
button it shows wine exits. I'm running version 20030813 on Debian GNU/Linux.
I don't know Wine at all, but I don't like that line:
warn:x11drv:SWP_DoOwnedPopups (0x10021) hInsertAfter = (nil)
Running: "wine --debugmsg warn+all c:/MC5DEMO/PROGRAM/MC5DEMO.EXE"
I see: http://javierlinares.com/software/wine/warnall.log
Running: "wine --debugmsg +file c:/MC5DEMO/PROGRAM/MC5DEMO.EXE"
I see: http://javierlinares.com/software/wine/file.log
I'm using versions:
15:52 javier@headquarters:~/.wine/fake_windows/MC5DEMO/PROGRAM$ dpkg -l |grep wine
ii libwine 0.0.20030813-2 Windows Emulator (Library)
ii wine 0.0.20030813-2 Windows Emulator (Binary Emulator)
ii wine-utils 0.0.20030813-2 Windows Emulator (Utilities)
ii winesetuptk 0.7-1 Windows Emulator (Configuration and Setup To
15:52 javier@headquarters:~/.wine/fake_windows/MC5DEMO/PROGRAM$
I know some people running Microcap on Linux with an old version of Wine, I have
mailed them and asked about the exact version number. Now I'm going to download
and build the CVS version, if it works I will give more information on that bug.
Thanks.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1834
Summary: midtown madness trial installer doesn't work.
Product: Wine
Version: CVS
Platform: Other
URL: http://www.microsoft.com/games/midtown/
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I click on the installer button, and the debugger starts, I'll attach a backtrace.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1833
Summary: transparent bitmaps not displayed correct
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kd.moeller(a)t-online.de
Bitmaps with transparent background are displayed with a black background.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1832
------- Additional Comments From puoti(a)inwind.it 2003-12-11 08:13 -------
When the game doesn't start the shell output is
Avail Phys: 228M Avail Page: 493M Avail addr: 2047M
Max files open at once: 0
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1832
------- Additional Comments From puoti(a)inwind.it 2003-12-11 08:11 -------
OK it is quite hard to get the game to start but it is possible. Unfortunately
there are no graphics at all, just a blue blank screen. Also, one time out of
two the game won't start at all. I'm sending the ddraw log, if you're a
developer and want to fix this the best way is to download the game, but I can
send any needed information if you don't have time/bandwidth
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1832
Summary: Microsoft midtown madness 2 trial doesn't work
Product: Wine
Version: CVS
Platform: PC
URL: http://www.microsoft.com/games/midtown2/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
The game starts, I can select (Only with the keyboard) races and select a race.
At this point the graphics is totally broken, I'll attach a screenshot and a
complete log.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1831
Summary: unimplemented function msvcrt.dll._mbsbtype
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: seemueller(a)fhm.edu
On SUSE-Linux 8.2 I get the error:
'fixme:seh:EXC_RtlRaiseException call to unimplemented function
msvcrt.dll._mbsbtype', when running a Win-Application developed with Sybase
Powerbuilder.
This bug occurred with the originally shipped wine version and also with the
actual version 20031016.
I have the complete error dump but I'm not sure about putting it here. Some
information meanwhile:
Some parts of the application work very well - including ODBC database access
of mysql databases. But with the msvcxx dlls I had some problems.
The best results (only 1 error so far) I produced with using a windows XP
native 'msvcirt.dll' and the wine native msvcrt.dll. Windows msvcrt.dll did
result in
err:module:LdrInitializeThunk Main exe initialization failde, status c0000142
The other windows dlls I use are:
odbc16gt, odbc32, odbc32gt, odbccp32, odbccr32, odbcint, odbctrac
Further fixme messages are a lot of
win32:SetCriticalSectionSpinCount critsection=... spincount=4000 not supported
but they seem to be not critical.
As I am a wine newbie it also could be a configuration problem?
Can you help me?
Many thanks
Albert
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1830
Summary: Multiplayer problem in age of empires (All versions)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.microsoft.com/games
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I'm only opening one bug report because I think it's a common problem, caused by
the same bug. When you select multiplayer in a game like age of empires, you
usually get a list saying
direct serial connection between 2 computers
direct parallel connection between 2 computers
tcp/ip lan connection between 2 computers
ipx lan connection between 2 computers
tcp/ip over the internet
in wine, the list is empty. It may be a problem of missing registry keys.
I don't know what kind of log may be useful, so I'm not sending any for now.
This problem may be affecting other games, but I can't test them as the
installers don't work. There are trial versions of age of empires at the
microsoft web site.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1670
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
------- Additional Comments From puoti(a)inwind.it 2003-11-11 15:56 -------
I still have the same problem, to be sure I installed a CVS build, I created a
new registry, config file and fake windows installation using winesetuptk 0.7,
and still had the problem. The intro works quite well, (I remember seeing it
with no textures not long ago), only that the eyes of the guys in the room flash
from time to time, so you have the impression you are looking at aliens and not
gangsters. Once I start playing, the car still has no textures and the game
crashes after about half a minute.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1828
Summary: Writing to Autofs/NFS paths not allowed
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: daire.byrne(a)framestore-cfc.com
If I make a network mapped style drive in the wine config and then try to write
to it from within an application like photoshop I get a dialog telling me the
"drive is full" - its not. So I am mapping a J: drive to /job which is an autofs
mount point. I can browse this J: drive and load pictures but cannot save to it.
If I make a Z: drive and map it to "/" and then browse my way into /job I can
now save files. Odd?
Sorry if this is a known issue - I found no search results for it.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1674
------- Additional Comments From Westto(a)hotmail.com 2003-11-11 01:28 -------
Something of the same nature here happens. Going to the CD Drive and running
Setup seems okay until it's about to install the files and complains
with "Setup failure: a file or files could not be copied". Using the latest
Wine (Oct 16th).
I have copied files over from my Windows Partitoon and ran it without the
Windows Partition (and used the one I made using Wine), and I get
an "Initalization Error". Same thing happens with running it off my real
Windows Partiton as well.
Rollercoaster Tycoon 2 just crashes to the debug prompt when it loads the
Installshield Installer.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=421
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|johane(a)lysator.liu.se |wine-bugs(a)winehq.com
Status|ASSIGNED |NEW
------- Additional Comments From johane(a)lysator.liu.se 2003-11-11 01:09 -------
Sorry, I don't have time to prioritize this task. Daughter calls.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1827
Summary: dlls/wininet does not compile on Fedora Core 1
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andrejoh(a)c2i.net
Trying to compile Wine from current CVS, gives the following compile error:
gcc -c -I/home/andrej/src/3rdparty/wine-cvs/dlls/wininet -I.
-I/home/andrej/src/3rdparty/wine-cvs/include -I../../include -D__WINESRC__
-D_WINX32_ -D_REENTRANT -fPIC -Wall -mpreferred-stack-boundary=2
-fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o cookie.o cookie.c
In file included from /usr/include/openssl/ssl.h:179,
from internet.h:36,
from cookie.c:39:
/usr/include/openssl/kssl.h:136: error: syntax error before '*' token
/usr/include/openssl/kssl.h:149: error: syntax error before '*' token
/usr/include/openssl/kssl.h:150: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:152: error: syntax error before '*' token
/usr/include/openssl/kssl.h:153: error: syntax error before '*' token
/usr/include/openssl/kssl.h:155: error: syntax error before '*' token
/usr/include/openssl/kssl.h:157: error: syntax error before '*' token
/usr/include/openssl/kssl.h:159: error: syntax error before '*' token
/usr/include/openssl/kssl.h:167: error: syntax error before '*' token
In file included from internet.h:36,
from cookie.c:39:
/usr/include/openssl/ssl.h:909: error: syntax error before "KSSL_CTX"
/usr/include/openssl/ssl.h:931: error: syntax error before '}' token
make: *** [cookie.o] Error 1
Line 136 of openssl/kssl.h is as follows:
krb5_octet FAR *key;
Compiling this on its own works fine; I assume the problem is with the FAR
macro, which seems to be defined in Wine as well.
The OpenSSL include file is from openssl-devel-0.9.7a-23
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1826
the-fallen(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From the-fallen(a)web.de 2003-10-11 14:11 -------
>merging the winedefault.reg but this doesnt help
Sorry, i should have written it more clearly. I could merge the winedefault.reg
20times and there would be no change. btw, when i try to import it using the
windows regeditor it freezes after opening it. Any further ideas? Maybe u need
additional information? Tell me :)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-10-11 13:58 -------
Clearly the value we're giving back here is *not* correct, as it causes RP8 to
crash, and presumably it doesn't crash on Windows on <1ghz boxes.
I wonder..... the default we start with before we run the CPU detect code is
1ghz. Could you try changing the static initializer at the top of misc/cpu.c to
something lower than your speed? See if it helps. If it does then I suspect I
know what is wrong (I think it's trying to sync the video to the CPU speed
correctly).
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1826
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-10-11 13:56 -------
Please *read* the error. The install was not completed correctly, you need to
merge winedefault.reg - reopen if you still have problems after correcting your
setup.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 546, which changed state.
Bug 546 Summary: DLL Separation: winedos from ntdll
http://bugs.winehq.com/show_bug.cgi?id=546
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 547, which changed state.
Bug 547 Summary: DLL Separation: user32 from gdi32
http://bugs.winehq.com/show_bug.cgi?id=547
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 549, which changed state.
Bug 549 Summary: DLL Separation: user32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=549
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 551, which changed state.
Bug 551 Summary: DLL Separation: gdi32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=551
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 546, which changed state.
Bug 546 Summary: DLL Separation: winedos from ntdll
http://bugs.winehq.com/show_bug.cgi?id=546
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 547, which changed state.
Bug 547 Summary: DLL Separation: user32 from gdi32
http://bugs.winehq.com/show_bug.cgi?id=547
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 549, which changed state.
Bug 549 Summary: DLL Separation: user32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=549
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 551, which changed state.
Bug 551 Summary: DLL Separation: gdi32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=551
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=551
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:42 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 546, which changed state.
Bug 546 Summary: DLL Separation: winedos from ntdll
http://bugs.winehq.com/show_bug.cgi?id=546
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 547, which changed state.
Bug 547 Summary: DLL Separation: user32 from gdi32
http://bugs.winehq.com/show_bug.cgi?id=547
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 549, which changed state.
Bug 549 Summary: DLL Separation: user32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=549
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 546, which changed state.
Bug 546 Summary: DLL Separation: winedos from ntdll
http://bugs.winehq.com/show_bug.cgi?id=546
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 547, which changed state.
Bug 547 Summary: DLL Separation: user32 from gdi32
http://bugs.winehq.com/show_bug.cgi?id=547
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 549, which changed state.
Bug 549 Summary: DLL Separation: user32 from ntdll (misc)
http://bugs.winehq.com/show_bug.cgi?id=549
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=549
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:42 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=547
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:42 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=546
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:42 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 536, which changed state.
Bug 536 Summary: DLL Separation: ttydrv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=536
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 537, which changed state.
Bug 537 Summary: DLL Separation: ttydrv from user32
http://bugs.winehq.com/show_bug.cgi?id=537
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 538, which changed state.
Bug 538 Summary: DLL Separation: x11drv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=538
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 531, which changed state.
Bug 531 Summary: DLL Separation: ddraw from gdi32
http://bugs.winehq.com/show_bug.cgi?id=531
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 542, which changed state.
Bug 542 Summary: DLL Separation: x11drv from user32 (misc)
http://bugs.winehq.com/show_bug.cgi?id=542
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 545, which changed state.
Bug 545 Summary: DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHandler)
http://bugs.winehq.com/show_bug.cgi?id=545
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 538, which changed state.
Bug 538 Summary: DLL Separation: x11drv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=538
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 531, which changed state.
Bug 531 Summary: DLL Separation: ddraw from gdi32
http://bugs.winehq.com/show_bug.cgi?id=531
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 542, which changed state.
Bug 542 Summary: DLL Separation: x11drv from user32 (misc)
http://bugs.winehq.com/show_bug.cgi?id=542
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 545, which changed state.
Bug 545 Summary: DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHandler)
http://bugs.winehq.com/show_bug.cgi?id=545
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 538, which changed state.
Bug 538 Summary: DLL Separation: x11drv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=538
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 531, which changed state.
Bug 531 Summary: DLL Separation: ddraw from gdi32
http://bugs.winehq.com/show_bug.cgi?id=531
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 542, which changed state.
Bug 542 Summary: DLL Separation: x11drv from user32 (misc)
http://bugs.winehq.com/show_bug.cgi?id=542
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 545, which changed state.
Bug 545 Summary: DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHandler)
http://bugs.winehq.com/show_bug.cgi?id=545
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 538, which changed state.
Bug 538 Summary: DLL Separation: x11drv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=538
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 531, which changed state.
Bug 531 Summary: DLL Separation: ddraw from gdi32
http://bugs.winehq.com/show_bug.cgi?id=531
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 542, which changed state.
Bug 542 Summary: DLL Separation: x11drv from user32 (misc)
http://bugs.winehq.com/show_bug.cgi?id=542
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 545, which changed state.
Bug 545 Summary: DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHandler)
http://bugs.winehq.com/show_bug.cgi?id=545
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=545
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 538, which changed state.
Bug 538 Summary: DLL Separation: x11drv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=538
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 531, which changed state.
Bug 531 Summary: DLL Separation: ddraw from gdi32
http://bugs.winehq.com/show_bug.cgi?id=531
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 542, which changed state.
Bug 542 Summary: DLL Separation: x11drv from user32 (misc)
http://bugs.winehq.com/show_bug.cgi?id=542
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=542
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=538
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=96
Bug 96 depends on bug 535, which changed state.
Bug 535 Summary: DLL Separation: wineps from gdi32
http://bugs.winehq.com/show_bug.cgi?id=535
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 536, which changed state.
Bug 536 Summary: DLL Separation: ttydrv from gdi32
http://bugs.winehq.com/show_bug.cgi?id=536
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Bug 96 depends on bug 537, which changed state.
Bug 537 Summary: DLL Separation: ttydrv from user32
http://bugs.winehq.com/show_bug.cgi?id=537
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=537
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=536
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=535
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2003-10-11 12:41 -------
Alexandre has worked on dll separation a lot and reports that it is now complete.
-> Marking as Resolved-Fixed.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1826
Summary: wrong stream implemention
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P4
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: the-fallen(a)web.de
Hi there everybody!
Sorry if this is at the wrong place, i didnt know where to put it.
Heres my problem:
I was attempting to install lightwave 7.5 on my box (athlonxp 1800+, 768mb ddr,
ati radeon9500) with gentoo linux and Gnome2. I installed wine20031016 (wasnt
able to specify it above) and after i got several programs working (even
photoshop 5!) I thought it could just work. After a little fight with
installshield and co the setup started without an errorbox but broke down when
configuring the windows installer. So i told wine to give me all the warn
messages and those are really strange and i dont understand them. At the end
there is something about merging the winedefault.reg but this doesnt help (i
also reinstalled wine, no change)
Here is my output of the console:
----------------------------------------------
bla@bla bla $ wine -debugmsg warn+all /mnt/cdrom/Install_LightWave/setup.exe
warn:storage:StgStreamImpl_Read read 816 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 1015 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 160 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 408 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 66 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 102 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 180 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 72 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 4 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 24 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 6 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 24 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 6 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 102 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
---------------------------------------------
At this point there wont happen anymore and i have to break it down.
And here are the mainparts of my wine config
---------------------------------------------
# <wineconf>
[Version]
; Windows version to imitate
(win95,win98,winme,nt351,nt40,win2k,winxp,win20,win30,win31)
"Windows" = "win98"
; DOS version to imitate
;"DOS" = "6.22"
[DllOverrides]
"rpcrt4" = "builtin, native"
"oleaut32" = "builtin, native"
"ole32" = "builtin, native"
"commdlg" = "native, builtin"
"comdlg32" = "native, builtin"
"ver" = "builtin, native"
"version" = "builtin, native"
"shfolder" = "builtin, native"
"shlwapi" = "builtin, native"
"shdocvw" = "builtin, native"
"lzexpand" = "builtin, native"
"lz32" = "builtin, native"
"comctl32" = "builtin, native"
"commctrl" = "builtin, native"
"mpr" = "builtin, native"
"winspool.drv" = "builtin, native"
"ddraw" = "builtin, native"
"dinput" = "builtin, native"
"dsound" = "builtin, native"
"opengl32" = "builtin, native"
"msvcrt" = "native, builtin"
"mcicda.drv" = "builtin, native"
"mciseq.drv" = "builtin, native"
"mciwave.drv" = "builtin, native"
"mciavi.drv" = "native, builtin"
"mcianim.drv" = "native, builtin"
"msacm.drv" = "builtin"
"msacm" = "builtin"
"msacm32" = "builtin"
"midimap.drv" = "builtin, native"
"krnl386" = "builtin"
"kernel32" = "builtin"
"gdi" = "builtin"
"gdi32" = "builtin"
"user" = "builtin"
"user32" = "builtin"
"ntdll" = "native, builtin, so"
"w32skrnl" = "builtin"
"wow32" = "builtin"
"system" = "builtin"
"display" = "builtin"
"toolhelp" = "builtin"
"winsock" = "builtin"
"wsock32" = "builtin"
"icmp" = "builtin"
"mpr" = "builtin"
"winaspi" = "builtin"
"wnaspi32" = "builtin"
"crtdll" = "native, builtin"
"dplay" = "native, builtin"
"dplayx" = "native, builtin"
"mmsystem" = "builtin"
"winmm" = "builtin"
"msvideo" = "native, builtin"
"msvfw32" = "native, builtin"
"wprocs" = "builtin, so"
"advpack" = "native"
"advapi32" = "builtin"
"shell" = "builtin, native"
"shell32" = "builtin, native"
; you can specify programs too
"notepad.exe" = "native, builtin"
; allow launching user.exe (for Remedy)
"*user.exe" = "native, builtin"
; default for all other dlls
"*" = "builtin, native, so"
[x11drv]
; Number of colors to allocate from the system palette
"AllocSystemColors" = "100"
; Use a private color map
"PrivateColorMap" = "N"
; Favor correctness over speed in some graphics operations
"PerfectGraphics" = "N"
; Color depth to use on multi-depth screens
;;"ScreenDepth" = "24"
; Name of X11 display to use
;;"Display" = ":0.0"
; Allow the window manager to manage created windows
"Managed" = "Y"
; Use a desktop window of 640x480 for Wine
"Desktop" = "1024x768"
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "Y"
; Use XShm extension if present
"UseXShm" = "Y"
; Use XVidMode extension if present
"UseXVidMode" = "Y"
; Use the take focus protocol
"UseTakeFocus" = "Y"
; Enable DirectX mouse grab
"DXGrab" = "N"
; Create the desktop window with a double-buffered visual
; (useful to play OpenGL games)
"DesktopDoubleBuffered" = "Y"
; Code page used for captions in managed mode
; 0 means default ANSI code page (CP_ACP == 0)
"TextCP" = "0"
; Use this if you have more than one port for video on your setup
; (Wine uses for now the first 'input image' it finds).
;; "XVideoPort" = "43"
; Run in synchronous mode (useful for debugging X11 problems)
;;"Synchronous" = "Y"
;
; Use the Render extension to render client side fonts (default "Y")
;;"ClientSideWithRender" = "Y"
; Fallback on X core requests to render client side fonts (default "Y")
;;"ClientSideWithCore" = "Y"
; Set both of the previous two to "N" in order to force X11 server side fonts
;
; Anti-alias fonts if using the Render extension (default "Y")
;;"ClientSideAntiAliasWithRender" = "Y"
; Anti-alias fonts if using core requests fallback (default "Y")
;;"ClientSideAntiAliasWithCore" = "Y"
;
[fonts]
;Read documentation/fonts before adding aliases
;See a couple of examples for russian users below
"Resolution" = "96"
"Default" = "-adobe-helvetica-"
"DefaultFixed" = "fixed"
"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-adobe-helvetica-"
;; default TrueType fonts with russian koi8-r encoding
;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;; default cyrillic bitmap X fonts
;"Default" = "-cronyx-helvetica-"
;"DefaultFixed" = "fixed"
;"DefaultSerif" = "-cronyx-times-"
;"DefaultSansSerif" = "-cronyx-helvetica-"
; the TrueType font dirs you want to make accessible to wine
[FontDirs]
;"dir1" = "/usr/X11R6/lib/X11/fonts/TrueType"
;"dir2" = "/usr/share/fonts/truetype"
;"dir3" = "/usr/X11R6/lib/X11/fonts/TT"
;"dir4" = "/usr/share/fonts/TT"
[serialports]
"Com1" = "/dev/ttyS0"
"Com2" = "/dev/ttyS1"
"Com3" = "/dev/ttyS2"
"Com4" = "/dev/modem"
[parallelports]
"Lpt1" = "/dev/lp0"
[spooler]
"LPT1:" = "|lpr"
"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
"LPT3:" = "/dev/lp3"
[ports]
;"read" = "0x779,0x379,0x280-0x2a0"
; "write" = "0x779,0x379,0x280-0x2a0"
[spy]
"Exclude" = "WM_SIZE;WM_TIMER;"
[Debug]
;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"RelayInclude" = "user32.CreateWindowA"
;"RelayFromExclude" = "user32;x11drv"
;"RelayFromInclude" = "sol.exe"
;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"SpyExclude" = "WM_SIZE;WM_TIMER;"
[registry]
;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
;Defaults are read all, write to Home
; Global registries (stored in /etc)
"LoadGlobalRegistryFiles" = "Y"
; Home registries (stored in ~user/.wine/)
"LoadHomeRegistryFiles" = "Y"
; Load Windows registries from the Windows directory
"LoadWindowsRegistryFiles" = "Y"
; TRY to write all changes to home registries
"WritetoHomeRegistryFiles" = "Y"
; Registry periodic save timeout in seconds
; "PeriodicSave" = "600"
; Save only modified keys
"SaveOnlyUpdatedKeys" = "Y"
[Tweak.Layout]
;; supported styles are 'Win31'(default), 'Win95', 'Win98'
;; this has *nothing* to do with the windows version Wine returns:
;; set the "Windows" value in the [Version] section if you want that.
"WineLook" = "Win98"
[Console]
;"Drivers" = "tty"
;"XtermProg" = "nxterm"
;"InitialRows" = "25"
;"InitialColumns" = "80"
;"TerminalType" = "nxterm"
[Clipboard]
"ClearAllSelections" = "0"
"PersistentSelection" = "1"
; List of all directories directly contain .AFM files
[afmdirs]
"1" = "/usr/share/ghostscript/fonts"
"2" = "/usr/share/a2ps/afm"
"3" = "/usr/share/enscript"
"4" = "/usr/X11R6/lib/X11/fonts/Type1"
[WinMM]
"Drivers" = "winealsa.drv"
"WaveMapper" = "msacm.drv"
"MidiMapper" = "midimap.drv"
[dsound]
;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
"HELmargin" = "5"
;; HEL only: Number of waveOut fragments ahead to queue to driver.
"HELqueue" = "5"
;; Max number of fragments to prebuffer
"SndQueueMax" = "28"
;; Min number of fragments to prebuffer
"SndQueueMin" = "12"
;; Forces emulation mode (using wave api)
"HardwareAcceleration" = "Emulation"
;; Sets default playback device (0 - number of devices - 1)
"DefaultPlayback" = "0" ; use first device (/dev/dsp)
;"DefaultPlayback" = "1" ; use second device (/dev/dsp1)
;"DefaultPlayback" = "2" ; use third device (/dev/dsp2)
;; Sets default capture device (0 - number of devices - 1)
"DefaultCapture" = "0" ; use first device (/dev/dsp)
;"DefaultCapture" = "1" ; use second device (/dev/dsp1)
;"DefaultCapture" = "2" ; use third device (/dev/dsp2)
[Network]
;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean,
default "Y").
;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs
;; from the Unix host name. You'll need to set ComputerName in
;;HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputName, too.
;"UseDnsComputerName" = "N"
# </wineconf>
#########################################
# Application dependent sections follow #
#########################################
;; sample AppDefaults entries
; 3 InstallShield versions who like to put their full screen window in front,
; without any chance to switch to another X11 application.
; So just catch them in a desktop window.
[AppDefaults\\_INS0432._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS0466._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS0576._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS5176._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS5576._MP\\x11drv]
"Desktop" = "640x480"
---------------------------------------------------------
I added these lines for the installer but i dont know if i still really need
them because i have messed around a little with the dlls :)
---------------------------------------------------------
[AppDefaults\\setup.exe\\DllOverrides]
"*" = "native, builtin, so"
"gdi32" = "builtin"
"user32" = "builtin"
"advapi32" = "builtin"
"rpcrt4" = "builtin"
---------------------------------------------------------
I hope you can help me, thx in advance!
Greetings
Norbert Nordpol (sorry, i know it looks constructed, but im NOT responsible for
my name ;)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1825
Summary: wrong stream implemention
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P4
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: the-fallen(a)web.de
Hi there everybody!
Sorry if this is at the wrong place, i didnt know where to put it.
Heres my problem:
I was attempting to install lightwave 7.5 on my box (athlonxp 1800+, 768mb ddr,
ati radeon9500) with gentoo linux and Gnome2. I installed wine20031016 (wasnt
able to specify it above) and after i got several programs working (even
photoshop 5!) I thought it could just work. After a little fight with
installshield and co the setup started without an errorbox but broke down when
configuring the windows installer. So i told wine to give me all the warn
messages and those are really strange and i dont understand them. At the end
there is something about merging the winedefault.reg but this doesnt help (i
also reinstalled wine, no change)
Here is my output of the console:
----------------------------------------------
bla@bla bla $ wine -debugmsg warn+all /mnt/cdrom/Install_LightWave/setup.exe
warn:storage:StgStreamImpl_Read read 816 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 1015 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 160 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 408 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 66 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 102 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 180 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 48 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 72 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 168 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 12 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 4 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 24 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 6 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 76 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 16 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 22 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 36 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 24 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 6 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 18 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 102 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
warn:storage:StgStreamImpl_Read read 512 instead of the required 1024 bytes !
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
ERROR: You need to merge the 'winedefault.reg' file into your
Wine registry by running: `regedit winedefault.reg'
---------------------------------------------
At this point there wont happen anymore and i have to break it down.
And here are the mainparts of my wine config
---------------------------------------------
# <wineconf>
[Version]
; Windows version to imitate
(win95,win98,winme,nt351,nt40,win2k,winxp,win20,win30,win31)
"Windows" = "win98"
; DOS version to imitate
;"DOS" = "6.22"
[DllOverrides]
"rpcrt4" = "builtin, native"
"oleaut32" = "builtin, native"
"ole32" = "builtin, native"
"commdlg" = "native, builtin"
"comdlg32" = "native, builtin"
"ver" = "builtin, native"
"version" = "builtin, native"
"shfolder" = "builtin, native"
"shlwapi" = "builtin, native"
"shdocvw" = "builtin, native"
"lzexpand" = "builtin, native"
"lz32" = "builtin, native"
"comctl32" = "builtin, native"
"commctrl" = "builtin, native"
"mpr" = "builtin, native"
"winspool.drv" = "builtin, native"
"ddraw" = "builtin, native"
"dinput" = "builtin, native"
"dsound" = "builtin, native"
"opengl32" = "builtin, native"
"msvcrt" = "native, builtin"
"mcicda.drv" = "builtin, native"
"mciseq.drv" = "builtin, native"
"mciwave.drv" = "builtin, native"
"mciavi.drv" = "native, builtin"
"mcianim.drv" = "native, builtin"
"msacm.drv" = "builtin"
"msacm" = "builtin"
"msacm32" = "builtin"
"midimap.drv" = "builtin, native"
"krnl386" = "builtin"
"kernel32" = "builtin"
"gdi" = "builtin"
"gdi32" = "builtin"
"user" = "builtin"
"user32" = "builtin"
"ntdll" = "native, builtin, so"
"w32skrnl" = "builtin"
"wow32" = "builtin"
"system" = "builtin"
"display" = "builtin"
"toolhelp" = "builtin"
"winsock" = "builtin"
"wsock32" = "builtin"
"icmp" = "builtin"
"mpr" = "builtin"
"winaspi" = "builtin"
"wnaspi32" = "builtin"
"crtdll" = "native, builtin"
"dplay" = "native, builtin"
"dplayx" = "native, builtin"
"mmsystem" = "builtin"
"winmm" = "builtin"
"msvideo" = "native, builtin"
"msvfw32" = "native, builtin"
"wprocs" = "builtin, so"
"advpack" = "native"
"advapi32" = "builtin"
"shell" = "builtin, native"
"shell32" = "builtin, native"
; you can specify programs too
"notepad.exe" = "native, builtin"
; allow launching user.exe (for Remedy)
"*user.exe" = "native, builtin"
; default for all other dlls
"*" = "builtin, native, so"
[x11drv]
; Number of colors to allocate from the system palette
"AllocSystemColors" = "100"
; Use a private color map
"PrivateColorMap" = "N"
; Favor correctness over speed in some graphics operations
"PerfectGraphics" = "N"
; Color depth to use on multi-depth screens
;;"ScreenDepth" = "24"
; Name of X11 display to use
;;"Display" = ":0.0"
; Allow the window manager to manage created windows
"Managed" = "Y"
; Use a desktop window of 640x480 for Wine
"Desktop" = "1024x768"
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "Y"
; Use XShm extension if present
"UseXShm" = "Y"
; Use XVidMode extension if present
"UseXVidMode" = "Y"
; Use the take focus protocol
"UseTakeFocus" = "Y"
; Enable DirectX mouse grab
"DXGrab" = "N"
; Create the desktop window with a double-buffered visual
; (useful to play OpenGL games)
"DesktopDoubleBuffered" = "Y"
; Code page used for captions in managed mode
; 0 means default ANSI code page (CP_ACP == 0)
"TextCP" = "0"
; Use this if you have more than one port for video on your setup
; (Wine uses for now the first 'input image' it finds).
;; "XVideoPort" = "43"
; Run in synchronous mode (useful for debugging X11 problems)
;;"Synchronous" = "Y"
;
; Use the Render extension to render client side fonts (default "Y")
;;"ClientSideWithRender" = "Y"
; Fallback on X core requests to render client side fonts (default "Y")
;;"ClientSideWithCore" = "Y"
; Set both of the previous two to "N" in order to force X11 server side fonts
;
; Anti-alias fonts if using the Render extension (default "Y")
;;"ClientSideAntiAliasWithRender" = "Y"
; Anti-alias fonts if using core requests fallback (default "Y")
;;"ClientSideAntiAliasWithCore" = "Y"
;
[fonts]
;Read documentation/fonts before adding aliases
;See a couple of examples for russian users below
"Resolution" = "96"
"Default" = "-adobe-helvetica-"
"DefaultFixed" = "fixed"
"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-adobe-helvetica-"
;; default TrueType fonts with russian koi8-r encoding
;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;; default cyrillic bitmap X fonts
;"Default" = "-cronyx-helvetica-"
;"DefaultFixed" = "fixed"
;"DefaultSerif" = "-cronyx-times-"
;"DefaultSansSerif" = "-cronyx-helvetica-"
; the TrueType font dirs you want to make accessible to wine
[FontDirs]
;"dir1" = "/usr/X11R6/lib/X11/fonts/TrueType"
;"dir2" = "/usr/share/fonts/truetype"
;"dir3" = "/usr/X11R6/lib/X11/fonts/TT"
;"dir4" = "/usr/share/fonts/TT"
[serialports]
"Com1" = "/dev/ttyS0"
"Com2" = "/dev/ttyS1"
"Com3" = "/dev/ttyS2"
"Com4" = "/dev/modem"
[parallelports]
"Lpt1" = "/dev/lp0"
[spooler]
"LPT1:" = "|lpr"
"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
"LPT3:" = "/dev/lp3"
[ports]
;"read" = "0x779,0x379,0x280-0x2a0"
; "write" = "0x779,0x379,0x280-0x2a0"
[spy]
"Exclude" = "WM_SIZE;WM_TIMER;"
[Debug]
;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"RelayInclude" = "user32.CreateWindowA"
;"RelayFromExclude" = "user32;x11drv"
;"RelayFromInclude" = "sol.exe"
;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"SpyExclude" = "WM_SIZE;WM_TIMER;"
[registry]
;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
;Defaults are read all, write to Home
; Global registries (stored in /etc)
"LoadGlobalRegistryFiles" = "Y"
; Home registries (stored in ~user/.wine/)
"LoadHomeRegistryFiles" = "Y"
; Load Windows registries from the Windows directory
"LoadWindowsRegistryFiles" = "Y"
; TRY to write all changes to home registries
"WritetoHomeRegistryFiles" = "Y"
; Registry periodic save timeout in seconds
; "PeriodicSave" = "600"
; Save only modified keys
"SaveOnlyUpdatedKeys" = "Y"
[Tweak.Layout]
;; supported styles are 'Win31'(default), 'Win95', 'Win98'
;; this has *nothing* to do with the windows version Wine returns:
;; set the "Windows" value in the [Version] section if you want that.
"WineLook" = "Win98"
[Console]
;"Drivers" = "tty"
;"XtermProg" = "nxterm"
;"InitialRows" = "25"
;"InitialColumns" = "80"
;"TerminalType" = "nxterm"
[Clipboard]
"ClearAllSelections" = "0"
"PersistentSelection" = "1"
; List of all directories directly contain .AFM files
[afmdirs]
"1" = "/usr/share/ghostscript/fonts"
"2" = "/usr/share/a2ps/afm"
"3" = "/usr/share/enscript"
"4" = "/usr/X11R6/lib/X11/fonts/Type1"
[WinMM]
"Drivers" = "winealsa.drv"
"WaveMapper" = "msacm.drv"
"MidiMapper" = "midimap.drv"
[dsound]
;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
"HELmargin" = "5"
;; HEL only: Number of waveOut fragments ahead to queue to driver.
"HELqueue" = "5"
;; Max number of fragments to prebuffer
"SndQueueMax" = "28"
;; Min number of fragments to prebuffer
"SndQueueMin" = "12"
;; Forces emulation mode (using wave api)
"HardwareAcceleration" = "Emulation"
;; Sets default playback device (0 - number of devices - 1)
"DefaultPlayback" = "0" ; use first device (/dev/dsp)
;"DefaultPlayback" = "1" ; use second device (/dev/dsp1)
;"DefaultPlayback" = "2" ; use third device (/dev/dsp2)
;; Sets default capture device (0 - number of devices - 1)
"DefaultCapture" = "0" ; use first device (/dev/dsp)
;"DefaultCapture" = "1" ; use second device (/dev/dsp1)
;"DefaultCapture" = "2" ; use third device (/dev/dsp2)
[Network]
;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean,
default "Y").
;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs
;; from the Unix host name. You'll need to set ComputerName in
;;HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputName, too.
;"UseDnsComputerName" = "N"
# </wineconf>
#########################################
# Application dependent sections follow #
#########################################
;; sample AppDefaults entries
; 3 InstallShield versions who like to put their full screen window in front,
; without any chance to switch to another X11 application.
; So just catch them in a desktop window.
[AppDefaults\\_INS0432._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS0466._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS0576._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS5176._MP\\x11drv]
"Desktop" = "640x480"
[AppDefaults\\_INS5576._MP\\x11drv]
"Desktop" = "640x480"
---------------------------------------------------------
I added these lines for the installer but i dont know if i still really need
them because i have messed around a little with the dlls :)
---------------------------------------------------------
[AppDefaults\\setup.exe\\DllOverrides]
"*" = "native, builtin, so"
"gdi32" = "builtin"
"user32" = "builtin"
"advapi32" = "builtin"
"rpcrt4" = "builtin"
---------------------------------------------------------
I hope you can help me, thx in advance!
Greetings
Norbert Nordpol (sorry, i know it looks constructed, but im NOT responsible for
my name ;)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=709
------- Additional Comments From mike(a)theoretic.com 2003-10-11 04:36 -------
Does this include the richedit control not even rendering text, and not taking
focus?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1824
------- Additional Comments From aragorn(a)tiscali.nl 2003-09-11 10:06 -------
I just found that I can also select the options as follows:
- select the box
- click on the down arrow and keep the left mousebutton down
- use the up and down arrows on the keyboard to select the options
The box is badly repainted after selection.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1824
Summary: Values for drop down listbox not shown
Product: Wine
Version: 20030408
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: aragorn(a)tiscali.nl
I'm trying to run the Dutch program for requesting a tax refund with
Wine 20030408. This program is available at
http://download.belastingdienst.nl/pub/2004/setup_vt.exe.
The program starts OK with no errors I can see. Everything seems to work
fine, except that a drop down listbox that should hold three options is
empty. When I click the down arrow on the box, it stays pressed for a
little while but no list appears below the box. Neither can I enter a value
in the box.
If I run the program under Windows 2000 it works fine: I can select from the
list and by typing the first letters in the box.
I tried to run the program with the native Windows 98SE commctrl and
commdlg dll-pairs, but that did not change anything (just slower
performance).
The problem can be reproduced as follows:
- Start the main program VT2004.exe (make sure the working directory is
the directory that contains this executable)
- You will first get a splash screen followed by the main screen
- Click "Persoonlijke gegevens" in the top left of the main screen
- The problem is in the listbox after the text "Uw persoonlijke situatie
in 2004"
The drop-down list should show the options "Alleenstaand" "Gehuwd" "Ongehuwd
samenwonend".
Additional information:
I just found that I can enter values by first right clicking on the box, then
typing escape or clicking to get rid of the context menu, and finaly typing
the first letter of an option (A, G or O).
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1823
------- Additional Comments From traxtopel(a)hotpop.com 2003-08-11 13:30 -------
uninstall ssl-devel & krb5-devel and their dependencies. Then it will compile.
You can also just use rh9 wine.
remember to use
setarch i386 wine program
Also you need to disable prelink for some software to work, or build wine
in say /usr/local, so prelink does not touch it.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-08-11 11:19 -------
Mike,
I don't know what it all means, but here is what looks like the key bit
from my ignorant attempt at a backtrace:-
First chance exception: divide by zero in 32-bit code (0x63501200).
In 32-bit mode.
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:1297 GS:0000
EIP:63501200 ESP:42caf6c4 EBP:42caf6e8 EFLAGS:00010246( R- 00 I Z- -P1 )
EAX:00000002 EBX:40dc3100 ECX:42caf6d8 EDX:00000000
ESI:404625d0 EDI:2f841a9b
Stack dump:
0x42caf6c4 (DRV23260.DLL..reloc+0xb2d6c4): 00000001 40dc3100 4052b6c4
401cef39
0x42caf6d4 (DRV23260.DLL..reloc+0xb2d6d4): 401fbfc0 2f841a9d 00000000
2f841a9b
0x42caf6e4 (DRV23260.DLL..reloc+0xb2d6e4): 00000000 42caf7bc 404ad97c
00000000
0x42caf6f4 (DRV23260.DLL..reloc+0xb2d6f4): 00000000 40dc3100 63501160
ffffffff
0x42caf704 (DRV23260.DLL..reloc+0xb2d704): 4051b2e8 40477d40 4052b6c4
403ea5f0
0x42caf714 (DRV23260.DLL..reloc+0xb2d714): 40300000 42caf7bc 42caf6f0
404ad923
0x42caf724 (DRV23260.DLL..reloc+0xb2d724):
0252: sel=1297 base=4074e000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x63501200 (RVRE3260.DLL..text+0x200 in RVRE3260.DLL) (ebp=42caf6e8)
1 0x404ad97c (THREAD_Start+0xec(ptr=0x403ea5f0) [thread.c:105] in
KERNEL32.DLL) (ebp=42caf7bc)
2 0x401e48b2 (start_thread+0x122(info=0x403ea700) [thread.c:1663] in
NTDLL.DLL) (ebp=42cafff4)
3 0x4011cb77 (NTDLL.DLL._memccpy+0x64097 in libc.so.6) (ebp=00000000)
0x63501200 (RVRE3260.DLL..text+0x200 in RVRE3260.DLL): divl 0x6351ddf0
(RVRE3260.DLL..data+0x1df0 in RVRE3260.DLL),%eax
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-08-11 09:06 -------
Hi Mike,
I have not looked into how to do a backtrace yet, I guess that's my
homework.
However, what I can tell you, at this point in time, is that there is not a
problem with counter->QuadPart.
I do not now believe the problem lies in misc/cpu.c at all. I have
determined that if one's computer is slower than 1GHz (I have a P3/450),
then RealPlayer 8 will cause Wine to throw an 'Unhandled exception (thread
0017)'. It seems that somewhere, (presumably in its video-handling
thread,) QueryPerformanceFrequency() is being called, and if the calling
code receives back a value of less than 1000000, then it is not happy. My
machine correctly gives it something very close to 450000 :-(.
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1823
Summary: Compile problem on Feodora Core 1!!! Please help!
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: iskren_s(a)yahoo.com
I've tried several sources, but none of them works :(
Here is the problem:
make[2]: Entering directory `/home/wishmaker/wine-20030911/dlls/wininet'
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -D__WINESRC__
-D_WINX32_ -Wall -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+
-Wpointer-arith -g -O2 -o cookie.o cookie.c
In file included from /usr/include/openssl/ssl.h:179,
from internet.h:36,
from cookie.c:39:
/usr/include/openssl/kssl.h:136: error: syntax error before '*' token
/usr/include/openssl/kssl.h:149: error: syntax error before '*' token
/usr/include/openssl/kssl.h:150: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:151: error: syntax error before '*' token
/usr/include/openssl/kssl.h:152: error: syntax error before '*' token
/usr/include/openssl/kssl.h:153: error: syntax error before '*' token
/usr/include/openssl/kssl.h:155: error: syntax error before '*' token
/usr/include/openssl/kssl.h:157: error: syntax error before '*' token
/usr/include/openssl/kssl.h:159: error: syntax error before '*' token
/usr/include/openssl/kssl.h:167: error: syntax error before '*' token
In file included from internet.h:36,
from cookie.c:39:
/usr/include/openssl/ssl.h:909: error: syntax error before "KSSL_CTX"
/usr/include/openssl/ssl.h:931: error: syntax error before '}' token
make[2]: *** [cookie.o] Error 1
make[2]: Leaving directory `/home/wishmaker/wine-20030911/dlls/wininet'
make[1]: *** [wininet] Error 2
make[1]: Leaving directory `/home/wishmaker/wine-20030911/dlls'
make: *** [dlls] Error 2
Compilation failed, aborting install.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1822
Summary: msi dll doesn't compile on FreeBSD 5.1 (20031016
version)
Product: Wine
Version: unspecified
Platform: Other
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: gregory(a)nutt.ca
First compile error is on line 76 of sql.y at the line:
%pure-parser
I remmed out the line and got more errors so I just removed /msi from the dlls
Makefile at which point I was able to finish compiling.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1821
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2003-07-11 09:03 -------
Created an attachment (id=408)
--> (http://bugs.winehq.com/attachment.cgi?id=408&action=view)
see the 2 buttons at the bottom right
You can see that the labels of the 2 buttons were not redrawn. They still
display the content of the first install screen.
CVS version: 2003/nov/07
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1821
Summary: button label not redrawn
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
I launched the MS Flight Simulator 98 install program. I choosed install.
After clicking, the 2 button on bottom of the screen were not redrawn. They
still display "Lisez-moi" ("Read me") and "Quitter" ("Quit") although they had
to diplay something like "Back" and "Continue".
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1820
Summary: ptys do not seem to work in wine
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: gonvaled(a)yahoo.com
[the version I currently run is wine-20031016, which is not an option in bugzilla]
A windows application tries to use the serial interface to communicate with a
target device. The target device is not directly connected to the linux computer
where the application is running (under Wine). That's why I want to redirect the
serial interface over the network. For that I need the application to use the
ptys as serial interface.
The problem is that, even though I enter the right configuration parameters:
[serialports]
"Com1" = "/dev/ttyp0"
when I run the application, it does not use the pty. I do not even know if Wine
has recognized the tty as a valid COM1. When I run winecheck, nothing is
reported about the serial interfaces.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From mike(a)theoretic.com 2003-06-11 09:25 -------
Can you get a backtrace of the fault? As I suspected it might be, the exception
is a div by zero. I think we're returning a faulty value... this machine is
quite old yes?
Try printing the value of counter->QuadPart in QueryPerformanceCounter()
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1223
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2003-06-11 08:56 -------
I have a similar problem:
---
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (French keyboard layout) for scancode mapping.
Please define your layout in dlls/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
---
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1818
Summary: err:shell:SHGetSpecialFolderPathA
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
Each time I try to install Microsoft Office 97, I get the following error messages:
err:shell:SHGetSpecialFolderPathA folder 0x00da unknown or not allowed
err:shell:SHGetSpecialFolderPathA folder 0x00dd unknown or not allowed
err:shell:SHGetSpecialFolderPathA folder 0x00b6 unknown or not allowed
err:shell:SHGetSpecialFolderPathA folder 0x00b9 unknown or not allowed
err:shell:SHGetSpecialFolderPathA folder 0x00da unknown or not allowed
err:shell:SHGetSpecialFolderPathA folder 0x00b6 unknown or not allowed
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1817
Summary: [wineinstall] bad symbolic links target
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
I used the tools/wineinstall script from CVS.
I DO NOT want to execute it as root. Thus, after the configuration, I typed make
install (My user ID is in an "install" group). The files were well copied in
/usr/local/wine.
I saw that wineinstall created some symbolic links in
[fake_windows_c_drive]/windows:
./system/wcmd.exe
./system/control.exe
./system/help.exe
./system/notepad.exe
./system/progman.exe
./system/regsvr32.exe
./system/winmine.exe
./system/winver.exe
./command/start.exe
./notepad.exe
./regedit.exe
./rundll32.exe
./uninstall.exe
./winhelp.exe
./winhlp32.exe
Those links point to files located in following source directory:
/home/j/src/wine/programs
I would like that "wineinstall" link them to the files copied in my install
directory (/usr/local/wine).
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=343
------- Additional Comments From tbuitendyk(a)hotmail.com 2003-05-11 02:56 -------
Don't know if this is relevant to bug 343, but I found the following on Frank's Place
website regarding saving issues in Word 2000. It fixed the problem that I was having
with saving under Word 97 (disk full, too many files message).
In config file, add the following section:
[AppDefaults\\winword.exe\\DllOverrides]
"ole32" = "native"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1816
Summary: can't compile 20031016 on Solaris 9
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Solaris
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rsparapa(a)mcw.edu
I'm using GCC 3.3.2 with the following GNU tools: texinfo, as, ld, flex and
bison. And, I am unable to compile the server. I tried adding --disable-trace,
but that didn't help. Here is the error message:
./tools/makedep -I. -I. -I./include -I./include -C.
gcc -c -I. -I. -I../include -I../include -D__WINESRC__ -Wall
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith
-I/usr/home/ras/sfw/include -L/usr/home/ras/sfw/lib -o context_i386.o context_i386.c
context_i386.c: In function `get_thread_context':
context_i386.c:241: error: `PT_GETREGS' undeclared (first use in this function)
context_i386.c:241: error: (Each undeclared identifier is reported only once
context_i386.c:241: error: for each function it appears in.)
context_i386.c:276: error: `PT_GETFPREGS' undeclared (first use in this function)
context_i386.c: In function `set_thread_context':
context_i386.c:295: error: `PT_GETREGS' undeclared (first use in this function)
context_i386.c:322: error: `PT_SETREGS' undeclared (first use in this function)
context_i386.c:332: error: `PT_SETFPREGS' undeclared (first use in this function)
*** Error code 1
make: Fatal error: Command failed for target `context_i386.o'
Current working directory /usr/home/ras/sfw/wine/wine-20031016/server
*** Error code 1
make: Fatal error: Command failed for target `server'
Compilation failed, aborting install.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
------- Additional Comments From mbc(a)soliton.com 2003-04-11 13:35 -------
Thanks a lot for the tip. I did not have symbol.ttf in my Windows/Fonts/
directory. Once it is put in the right place, I can see the correct symbols
now. Thanks again.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
------- Additional Comments From rklazes(a)xs4all.nl 2003-04-11 12:54 -------
The program uses (here) the standard Symbol font. This was broken in Wine and
fixed about a week ago.
To use it symbol.ttf must be available in your Windows\Fonts subdirectory,
together with the other usual windows fonts (Arial etc.) AND you must have a
recent version of libfreetype installed.
Check with --debugmsg +font if the freetype loading is going well, this is in
the beginning on my system:
trace:font:WineEngInit
trace:font:WineEngInit FreeType version is 2.1.5
trace:font:ReadFontDir Loading fonts from "/dos/d/win98/Fonts"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1169
------- Additional Comments From aztennenbaum(a)yahoo.com 2003-04-11 11:35 -------
This also seems to happen when i use diablo 2
lord of destruction
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
mbc(a)soliton.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
------- Additional Comments From mbc(a)soliton.com 2003-04-11 10:09 -------
I should add that the fonts are still incorrect. I am not sure whether it is a
problem in the wine code, or I did not set up my fonts correctly.
I used tools/fnt2bdf to convert the *.FON files in the C:\WINDOWS\FONTS
directory to BDF format and then I used bdf2pcf to convert them to PCF format.
These are the ones which got converted successfully:
Courier_r400-13.pcf MS-Serif_r400-11.pcf Small-Fonts_r400-5.pcf
Courier_r400-16.pcf MS-Serif_r400-13.pcf Small-Fonts_r400-6.pcf
Courier_r400-20.pcf MS-Serif_r400-16.pcf Small-Fonts_r400-8.pcf
Courier_r400-25.pcf MS-Serif_r400-19.pcf Symbol_r400-13.pcf
Fixedsys_r400-15.pcf MS-Serif_r400-20.pcf Symbol_r400-16.pcf
Fixedsys_r400-20.pcf MS-Serif_r400-21.pcf Symbol_r400-19.pcf
MS-Sans-Serif_r400-13.pcf MS-Serif_r400-23.pcf Symbol_r400-20.pcf
MS-Sans-Serif_r400-16.pcf MS-Serif_r400-27.pcf Symbol_r400-21.pcf
MS-Sans-Serif_r400-20.pcf MS-Serif_r400-33.pcf Symbol_r400-23.pcf
MS-Sans-Serif_r400-24.pcf MS-Serif_r400-35.pcf Symbol_r400-27.pcf
MS-Sans-Serif_r400-25.pcf MS-Serif_r400-43.pcf Symbol_r400-33.pcf
MS-Sans-Serif_r400-29.pcf Small-Fonts_r400-10.pcf Symbol_r400-35.pcf
MS-Sans-Serif_r400-36.pcf Small-Fonts_r400-11.pcf Symbol_r400-43.pcf
MS-Sans-Serif_r400-37.pcf Small-Fonts_r400-12.pcf System_r700-16.pcf
MS-Sans-Serif_r400-46.pcf Small-Fonts_r400-13.pcf System_r700-20.pcf
MS-Serif_r400-10.pcf Small-Fonts_r400-3.pcf
In my .wine/config :
[fonts]
"Resolution" = "96"
"Default" = "-adobe-helvetica-"
"DefaultFixed" = "fixed"
"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-adobe-helvetica-"
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
rklazes(a)xs4all.nl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From rklazes(a)xs4all.nl 2003-04-11 01:23 -------
OK, mark this bug as fixed now.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1815
Summary: wine and winedbg will not run on AMD K6 system
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: urtext(a)hfx.andara.com
System:
RH9, fully patched to November 1 2003
AMD K6-2 on MVP3
Wine fails with "nested exception on signal stack" errors (its in signal_i386.c
in ntdlls).
I origionally tried the RH9 rpms on this machine, but wine always failed with a
segmentation fault. Then I cleaned the system and tried with the gz binary
package, then the source distribution and finally the CVS, all with the same
result. Using wineinstall with a no Window installation this time, but building
the ~/.wine/config by hand has the same effect.
Running "wine notepad.exe" has the following restult to STDERR (ignore the
configuration messages):
Could not stat /mnt/fd0 (No such file or directory), ignoring drive A:
Could not stat /cdrom (No such file or directory), ignoring drive D:
err:seh:setup_exception nested exception on signal stack in thread 0009 eip
400454fd esp 4080019c stack 0x407b0000-0x409b0000
the setup_exception line is repeated 344 times, each with different esp values
until wine finally craps out with a segmentation fault. Running winedbg without
any parameters has the same errors, but the setup_exception loop seems to run
forever.
I have never managed to get wine running on this system at all -- I've been
trying on and off since August.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
------- Additional Comments From mbc(a)soliton.com 2003-03-11 13:13 -------
Thank you for the patch. The toolbar now appears at the bottom.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1814
Summary: SIGSEV on redhat 9.0
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jpkaylor(a)purdue.edu
wine causes SIGSEV on redhat 9.0
kernel ------------> 2.4.20-20.9, reproduced in vanilla 2.4.22
pthreads library --> /lib/libpthread-0.10.so
glibc library------> /lib/libc-2.3.2.so
i receive the following output from 20030911, and CVS (11/2/03) via gdb
(note: identical functions in both)
wine: /usr/lib/wine /usr/local/bin/wine /usr/local/lib/wine
[root@localhost wine]# gdb /usr/local/bin/wine
GNU gdb Red Hat Linux (5.3post-0.20021129.18rh)
Copyright 2003 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-gnu"...
(gdb) run
Starting program: /usr/local/bin/wine
Program received signal SIGSEGV, Segmentation fault.
0x420ebe3c in __libc_pthread_init () from /lib/tls/libc.so.6
(gdb) backtrace
#0 0x420ebe3c in __libc_pthread_init () from /lib/tls/libc.so.6
#1 0x3c001754 in __pthread_initialize () at ../scheduler/pthread.c:770
#2 0x3c001821 in __do_global_ctors_aux ()
#3 0x3c000bd9 in _init ()
#4 0x3c0017ae in __libc_csu_init ()
#5 0x42015669 in __libc_start_main () from /lib/tls/libc.so.6
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1810
------- Additional Comments From x86zman(a)bigfoot.com 2003-02-11 18:48 -------
Created an attachment (id=405)
--> (http://bugs.winehq.com/attachment.cgi?id=405&action=view)
MaxPayne2 (v1.01) NoCD exe, w/ Sound Disabled - Trace log
this is the output of :
"wine --debugmsg +kernel,+ntdll,+d3d,+dsound MaxPayne2.exe >&
MaxPayne2-trace.log"
with sound disabled (~/.wine/config. drivers="")
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1225
us(a)the-edmeades.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2003-02-11 16:47 -------
Closing as per comments
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1810
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2003-02-11 16:38 -------
Try disabling sound (~/.wine/config. drivers="") and see if the problem
persists. It may help identify the area which needs fixing.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1811
------- Additional Comments From dclark(a)akamail.com 2003-02-11 13:32 -------
Some very recent work has been done in this area. So if you really are using
version 20030911, you might try the current CVS version and see if the problem
still exists.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1667
------- Additional Comments From Andrew.Talbot(a)talbotville.com 2003-02-11 07:19 -------
Lionel's patch is correct. However, it activates previously dormant code,
part of which causes this bug.
There seems to be a problem with the code of misc/cpu.c which deals with the
case where PF[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE. (Evidence:
commenting-out lines 391, 392 gets the video back on my system.)
-- Andy.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1812
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |LATER
------- Additional Comments From Speeddymon(a)yahoo.com 2003-01-11 20:16 -------
Please note that the above comments were from Bug 926, which applied to Diablo
II, but that these same notes are now also applying to StarCraft/Brood Wars for
sure and probably all of the WarCraft's.. So if you are having a problem with
a loader for Diablo II or StarCraft, and you are able to get the game to run
(just not on bnet) with the cracked exe (the file you actually replaced in the
game directory), then contact me, otherwise, file a new bug or put your
comments under bug 926.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1812
Summary: no-cd loaders for Blizzard Games do not work under wine
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-ipc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Speeddymon(a)yahoo.com
***This bug is only for Blizzard games that do not work when using a no-cd
battle.net loader*** Any other games should be filed under a different bug.
Relevant Comments from Bug 926:
------- Additional Comments From gsstark <at> mit.edu 2002-09-25 08:17 -------
I used to play Diablo II regularly under wine, however after a long hiatus I
tried again recently and it didn't work. It just sat there, no errors, no
windows, nothing happened. It seems either newer versions of wine have a
regression here or there's an incompatibility with X 4.2 or linux 2.4 or
something else on my system that's been updated. I straced the process and it
just sat calling wait4 but then I guess that's normal, it's hard to trace a
program that forks so much.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-10-05
23:58 -------
Could you do some regression testing on this to find out what patch broke it?
http://www.winehq.org/Docs/wine-devel/cvs-regression.shtml
------- Additional Comments From Speeddymon <at> yahoo.com 2002-10-14 04:54 ---
-----
hmm, I am able to get windows opened, i just cant get it to start now, if I
load Diablo II.exe (uncracked version) it asks me for the original CD, and if I
run the DLoad.exe (cracked version to not need the CD) it gives me this
error:fixme:ntdll:NtOpenProcessToken (0xffffffff,0x00000028,0x406f28d4): stub
fixme:advapi:LookupPrivilegeValueW ((null),L"SeDebugPrivilege",0x66f01824): stub
fixme:ntdll:NtAdjustPrivilegesToken
(0x0000cafe,0x00000000,0x66f01820,0x00000000,(nil),(nil)),stub!
err:virtual:NtAllocateVirtualMemory called with wrong alloc type flags
(08001000) !
and in the Desktop window (i have Desktop=800x600 on) i get a box saying:
Error establishing API Hooks
I have tried winver win2k, nt40, and 98 in the config file...
------- Additional Comments From Speeddymon <at> yahoo.com 2002-10-15 02:04
-------
I figured out the problem...
Here is the scenario:
Diablo II.exe and Game.exe unpatched, no bnet loader
Game works (from what I can tell, dont have original CD right now, it is at a
friend's)
DLoad.exe and Game_crk.exe bnet loader and patched Game.exe
Game_crk.exe works for single player only, DLoad.exe is the file causing the
errors
If you need to run the game on bnet with the loader for whatever reason, email
me by clicking on my name above this post. I will email you a script to get it
working, it does the same thing as DLoad.exe but it is in script form so that
you can do it on linux...
--------
Note that these notes are a bit old and I havent gotten a chance to update them
to the newest wine output, so some of them may be invalid, but then again, this
bug is mainly a place for people who are having problems with the loaders and
need to get it working
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=926
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |cloud1086(a)hotmail.com
------- Additional Comments From Speeddymon(a)yahoo.com 2003-01-11 19:57 -------
*** Bug 1807 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1807
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From Speeddymon(a)yahoo.com 2003-01-11 19:57 -------
This is not a bug in wine, but a "feature" in Battle.net. They check your copy
of starcraft.exe (or the brod wars executable) to see if it is cracked or
not.. Since yours is, it tells you that it is unable to determine the
application version. You have a couple of options..
1) Go buy a new CD.. This isnt always the most feasible, but if you have the
money to blow, why not?
2) Go buy a Game Doctor/Skip Doctor/Disc Doctor/etc.. This is a scratch repair
kit that truely works. It uses a layer of water and a wheel to fill in the
scratches on the surface of the disc.. You can get it at Best Buy. Word of
caution on this one: It makes the surface of the disc a little hazy (from the
water) so if you have an older CD Drive (anything slower than a 36x), dont use
this one because it wont be able to read the cd..
3) Find the bnet loader.. This is probably the best option if you want to
continue using the patched version. There are a couple of sites you can get
this from, but I cant list them here for legal reasons.. Just email me.. Only
problem with this option is that the bnet loader doesnt work under wine (yet),
so get that if you are running windows and/or the one I'm about to list..
4) Linux-based bnet loader.. This was originally made by me, but since I lost
the computer that it was on, I dont have it anymore. If you know bash
scripting, I can tell you how to make it again, if not, you will need to find
someone that does, and have them email me, just ask around on the wine-devel
list.
My email is above this post (click or hover the mouse over my name), any other
comments or questions just email me, no need to flood the wine bugs list with
unrelated stuff..
*** This bug has been marked as a duplicate of 926 ***
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1811
Summary: Some directory contents does not appears
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: haroldo.gamal(a)silexonline.org
When I access a vfat partition mounted using utf8 parameter, some directories
are not shown to the applications running under wine.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1806
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2003-01-11 13:42 -------
_READ_ the error message.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1810
Summary: Max Payne 2 (v1.01, NoCD exe) ceases while loading the
1st mission
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: x86zman(a)bigfoot.com
Hello !
I use Wine-CVS_20031031 and MaxPayne 2 (v1.01, NoCD exe) on Linux 2.4.22
(ALSA-{Driver,Libs,Utils} 0.9.8) with GLIBC 2.3.2, BinUtils 2.14, GCC 3.2.3,
XFree86 4.3.0.1 + NVIDIA-Linux-x86 4.4.9.6
all of this running on AMD Athlon 1.6GHz with 512MB or RAM, and lots of Diskspace.,
I'm able to start MaxPayne2, but it ceases while loading the 1st mission... :(
i've attached a full Trace log.
Please help my Maxy run on Linux ! :)
Thanks ahead,
Moran Z.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1809
Summary: Microsoft Word Viewer (wd97vwr32.exe) no longer works
since 20030813
Product: Wine
Version: 20030813
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: wine(a)wine.lka.org.lu
Since 20030813, launching the "free" Microsoft Viewer in wine makes the
following thing happen:
1. Word Splash screen stays on screen
2. There are two wine processes
3. As shown with strace, the father segfaults over and over again (apparently,
the signal is being caught, that's why it doesn't exit)
4. The child takes up all remaining CPU (as shown by top), but doesn't do any
system calls (as shown by strace). An endless loop?
This has been experienced on a SuSE-9.0 system.
Last known working copy is wine-20030709-SL8.2
Known broken are the following wine-20030813 (8.2), wine-2003080911 (9.0),
wine-20031016 (8.2 and 9.0) show the problem [All tried on a SuSE-9.0 system,
the version number refers to the RPM. Oddly enough, the one does work
(20030709) is one that is intended for 8.2...)
[The Word Viewer can be downloaded from http://download.microsoft.com/download/
word2000/wd97vwr/2000/WIN98/EN-US/wd97vwr32.exe]
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1808
Summary: incorrect fonts and misplacement of toolbar
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mbc(a)soliton.com
I tried to run a bridge playing program. The tool bar in the program was
supposed to be at the bottom of the window. But it is drawn at the top by
wine. In addition, the symbol characters for SPADE, HEART, DIAMOND, CLUB are
not correct.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.