http://bugs.winehq.com/show_bug.cgi?id=1464
------- Additional Comments From jbon(a)cfl.rr.com 2003-22-05 20:29 -------
I upgraded my kernel to the one that goes with RedHat 9.0 to match the rest of
my system. (I was holding on to an old kernel until now)
With the new kernel, the wine-20030508 compiled with --with-nptl worked just fine.
I suppose the new RedHat 9 glibc was just broken on the non-nptl kernel.
--
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=1468
ed(a)halley.cc changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:56 -------
The above patches and .spec allow me to build and install and run the 20030508
.src.rpm of Wine on a fresh Red Hat Linux 9 box. There may still be issues but
this is a significant fix ready for other people to try.
--
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=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:54 -------
Created an attachment (id=260)
--> (http://bugs.winehq.com/attachment.cgi?id=260&action=view)
New .spec file for RHL9-ready wine-20030508.
This .spec file offers the two attached patches.
It also provides a fixed "Provides:" line for libntdll.dll.so (which the
auto-provides detector doesn't reliably find).
It also build-requires autoconf >= 2.53 (instead of the older name
autoconf253).
It also configures the build --with-nptl, which is required for RHL9's kernels.
It also marks the version as 1rh9winehq instead of 1rh8winehq.
It lastly offers a changelog to this effect.
--
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=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:47 -------
Created an attachment (id=259)
--> (http://bugs.winehq.com/attachment.cgi?id=259&action=view)
Forces the src wineserver to run during .src.rpm build
The current .src.rpm must run the regedit.exe program to populate the registry.
However, it does not reliably run the wineserver which was just built. This
may not be discovered on systems which already have an older wine built and
installed. By forcing the launch of the just-built wineserver, and giving a
second for the server to start properly, the .src.rpm becomes more robust.
--
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=1468
------- Additional Comments From ed(a)halley.cc 2003-22-05 16:43 -------
Created an attachment (id=258)
--> (http://bugs.winehq.com/attachment.cgi?id=258&action=view)
Specifies no docbook2pdf or docbook2ps steps
The Red Hat Linux 9 docbook-utils does not contain docbook2pdf or the backend
postscript tools. This patch removes that requirement from the makefiles. The
alternative is to add another build-require for docbook-utils-pdf, but it still
may not be complete.
--
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=1481
Summary: Can't start wine on linux 2.5.69 kernel with tls glibc
2.3.2 (linuxthreads, not nptl) / problem with wineserver
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: christophe(a)saout.de
Hi!
I really have no idea where this could be coming from.
Wine was working fine until about two or three months ago, I don't know exactly
what change caused this problem.
When trying to run wine I always get something like this:
chtephan:/### > wine ###.exe
wine: chdir to /tmp/.wine-chtephan/server-fe01-5364 : No such file or directory
There is no wineserver running or something, and I the /tmp directory is also clean.
I'm running the linux development kernel 2.5.69 and recently compiled glibc
2.3.2 with tls support (but still using linuxthreads). I didn't change anything
else.
--
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=1480
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-22-05 08:24 -------
> First, a Windows pop-up appears with this message:
>
> A newer version of DCOM95 or DCOM98 has been installed. To override, you
> must uninstall trhe current version first.
for this one you could try instructing wine to use native version of OLE32.DLL
for dcom-update process, even if this DLL is missing in clean-wine install.
I mean you can add "--dll ole32=n" to command line, as for example:
wine --dll ole32=n filemaker.exe
or you could try adding line "ole32" = "native" to your wine config-file, into
that (possibly new) section:
[AppDefaults\\install.exe\\DllOverrides]
"ole32" = "native"
there is "install.exe" used here because dcom98 updater (could be downloadded
from MS web) I was experimenting with was spawning child processes and needed
this dll-override only for "install.exe". though, dll-override from command line
seems to be more strict.
> Later, the install fails completely, with this message coming from wine:
> fixme:cabinet:FDICreate (pfnalloc == ^0x244f90b0, pfnfree == ^0x244f90be,
> pfnopen == ^0x244f90cc, pfnread == ^0x244f9294, pfnwrite == ^0x244f9401,
> pfnclose == ^0x244f956a, pfnseek == ^0x244f95f4, cpuType == -1, perf ==
> ^0x2453fae8): stub
>
> Please help.
eghm.. I think this one could be solved by such dll-override:
cabinet=n
and I would override cabinet.dll usage globally, for example by putting it to
section:
[DllOverrides]
"cabinet" = "native"
..
BTW, I cannot remember where did cabinet.dll come from. was it DCOM98 update,
or was it MSI package? whatever, good luck with 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=1464
rebus(a)seznam.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From rebus(a)seznam.cz 2003-21-05 19:33 -------
Hello,
I have finally found a machine which works fine with wine. By comparing the
package list I have found the difference which caused all this.
It seems glibc contains nptl stuff only in i686 packages and not in i386.
I upgraded to i686 (despite I have Athlon cpu) and wine works as expected.
May be this information would be worth of mentioning as a requirement for rh9 in
install guide on the same place where the --with-nptl option is mentioned.
Thanks to all of you for support.
Michal Ambroz
--
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=1480
Summary: Get DCOM95 DCOM98 error and FDICreate error on latest
version
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: dwtrusty(a)hotmail.com
I'm trying to run a Filemaker application, but I get these errors:
First, a Windows pop-up appears with this message:
A newer version of DCOM95 or DCOM98 has been installed. To override, you must
uninstall trhe current version first.
Later, the install fails completely, with this message coming from wine:
fixme:cabinet:FDICreate (pfnalloc == ^0x244f90b0, pfnfree == ^0x244f90be,
pfnopen == ^0x244f90cc, pfnread == ^0x244f9294, pfnwrite == ^0x244f9401,
pfnclose == ^0x244f956a, pfnseek == ^0x244f95f4, cpuType == -1, perf ==
^0x2453fae8): stub
Please 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=1411
------- Additional Comments From puoti(a)inwind.it 2003-21-05 14:44 -------
It still doesn't run with current cvs, the debugger starts almost immediatly,
I'm going to attach the output.
--
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=1290
------- Additional Comments From julliard(a)winehq.com 2003-21-05 11:40 -------
Actually Wine is not supposed to depend on GNU make, and I think it's
important to keep it that way. However I don't have BSD make so you'll
have to investigate yourself; but please do that and submit a patch, we
very much want Wine to build with BSD make.
--
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
Summary: freebsd does not build "avifile.dll.so"
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lenaig(a)wanadoo.fr
Hi,
Trying to run cvs wine on FreeBSD 4.8.
Thx
cd `dirname avicap32/__install__` && make install
../../tools/mkinstalldirs -m 755 /usr/local/lib/wine
/usr/bin/install -c avicap32.dll.so /usr/local/lib/wine/avicap32.dll.so
cd `dirname avifil32/__install__` && make install
../../tools/mkinstalldirs -m 755 /usr/local/lib/wine
/usr/bin/install -c avifil32.dll.so /usr/local/lib/wine/avifil32.dll.so
make: don't know how to make _install_/avifile.dll.so. Stop
*** Error code 2
Stop in /home/tst/wine/dlls.
*** Error code 1
--
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=1477
------- Additional Comments From reif(a)earthlink.net 2003-21-05 10:40 -------
Change OSS_RING_BUFFER_SIZE in dlls/winmm/wineoss/audio.c to 512 and try it
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=1464
------- Additional Comments From jbon(a)cfl.rr.com 2003-21-05 08:53 -------
Created an attachment (id=254)
--> (http://bugs.winehq.com/attachment.cgi?id=254&action=view)
Backtrace at SEGV point.
This is a backtrace at the segfault. The test program I was running was a
simple console application that prints "hello world" that was compiled under
mingw32. This program worked just fine using the wine package from RedHat 8.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=1464
------- Additional Comments From jbon(a)cfl.rr.com 2003-21-05 08:49 -------
I am experiencing the same bug. I am using an upgraded RedHat 9.0 system with a
stock (kernel.org) kernel version 2.4.19. I see the same debug output as seen
in the attached log.
I compiled my version of wine from the wine-20030508 snapshot with the
--with-nptl option. This bug happens with and without the LD_ASSUME_KERNEL set.
I ran wine with gdb and got a backtrace. I have attached it as wine_backtrace.txt.
I don't have debug symbols for the glibc bits because I still don't know how to
get these to work on RedHat but this should still 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=1290
gerald(a)pfeifer.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From gerald(a)pfeifer.com 2003-21-05 05:52 -------
I'm quite sure this is because you are using BSD make and not GNU make.
While personally I'm not happy that Wine uses GNU make specific constructs,
this is a feature that probably won't go away anytime soon (if ever) as the
Wine maintainers do not consider this critical (and avoiding those features
may be hard).
Can you confirm that the problem goes away with GNU make?
--
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=980
gerald(a)pfeifer.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From gerald(a)pfeifer.com 2003-21-05 05:45 -------
This is a duplicate of 1478 which has a bit more up-to-date and detailed
information. Unfortunately the problem doesn't seem fixed.
*** This bug has been marked as a duplicate of 1478 ***
--
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=1478
gerald(a)pfeifer.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tmdraney(a)yahoo.com
------- Additional Comments From gerald(a)pfeifer.com 2003-21-05 05:45 -------
*** Bug 980 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=1474
------- Additional Comments From mmokrejs(a)natur.cuni.cz 2003-21-05 05:11 -------
But for what does it have to be "setup correctly" at all? User just asked print help. I believe it does NOT need ~/.wine/fake_windows/ for anything during that execution.
But yes, in this case it was the first time user has executed 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=1475
------- Additional Comments From mmokrejs(a)natur.cuni.cz 2003-21-05 05:09 -------
No, that was by intention. I wanted to make sure that the windows binaries behave same way as unix binaries. So, yes, I know that it exists on many unixes. But at that moment I just wanted to be sure how it behaves on windows -- so I tried wine to execute 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=1475
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From mike(a)theoretic.com 2003-21-05 04:25 -------
OK. Not sure why you'd want to do that, but I can confirm that netapi32 is
basically a stub DLL.
Was this just a random test or are you not aware that wget is present on most
linux installs?
--
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=1474
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-21-05 04:23 -------
As far as I'm aware yes, if those files aren't present it means Wine was not set
up correctly on installation.
--
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=1478
Summary: freeBSD 4.8 doesn't build stream.dll.so
Product: Wine
Version: 20030508
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lenaig(a)wanadoo.fr
# $FreeBSD: ports/emulators/wine/Makefile,v 1.141 2003/05/09 09:28:35 gerald Exp
$
#
PORTNAME= wine
PORTVERSION= 2003.05.08
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= ALPHA/wine/development
DISTNAME= Wine-${PORTVERSION:S/.//g}
MAINTAINER= gerald(a)FreeBSD.org
COMMENT= Microsoft Windows 3.1/95/98/NT/2000 emulator for Unix
Dear sir,
When i am trying to run wine, on FreeBSd box, i have the following error....:
<-------------------->
fixme:reg:GetSystemInfo not yet supported on this system
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.
err:module:BUILTIN32_dlopen failed to load .so lib for builtin steam.dll: Cannot
open "/usr/local/lib/wine/steam.dll.so"
fixme:file:SetFileAttributesW Couldn't set file attributes for existing file
"/usr/local/jeux/c/SIERRA/Half-Life/sierra.inf".
Check permissions or set VFAT "quiet" mount flag
fixme:file:SetFileAttributesW Couldn't set file attributes for existing file
"/usr/local/jeux/c/SIERRA/Half-Life/valve/config.cfg".
Check permissions or set VFAT "quiet" mount flag
fixme:reg:RegFlushKey (0x60): stub
<----------------------------->
stream does not exist....
Thx
--
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=1468
------- Additional Comments From ed(a)halley.cc 2003-20-05 22:22 -------
Okay, I've gotten the wine-20030508-1rh8winehq.src.rpm to build cleanly and
supply all requirements for Red Hat Linux 9. I have not installed and tested it
yet, but the build goes through cleanly.
I will provide the required patches and spec file changes after I do a little
testing.
I've seen someone else on irc #winehq complaining about the missing
/tmp/.wine-userid/server-foo problem on rhl9, so I think it's a race condition.
I may be able to give a slightly-hackish workaround patch in the next couple
days, so I'll report that bug separately and link it to this one after testing.
--
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=1477
------- Additional Comments From reif(a)earthlink.net 2003-20-05 18:46 -------
Could you change OSS_RING_BUFFER_SIZE in dlls/winmm/wineoss/audio.c from 192 to
something bigger?
Could you also trace the program (--debugmsg +wave) to see if the thread on the
other side of the buffer is 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=1471
------- Additional Comments From lfs(a)isl-gbr.de 2003-20-05 14:31 -------
i made the same experience with unreal and other games like half-life; the last
answer i got was something like whats bad with managed windows...; for some
games its simply bad to play if not fullscreen. I didn't find a fix for this problem since
i'm not able to track it down, but i have a workarround if your problem is caused by
the same thing: run wine without a windowmanger :) - for that purpose i start a
second, clean x-server
--
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-20-05 13:26 -------
By the way, with today's cvs I can enter single player, load a saved game, and
get to the ship configuration. I can't go on because the go on button won't
work. I can't start a new game because the start button is to little, and it's
impossible to click on it with the mouse moving on it's own to the top of the
screen all the time.
--
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=1476
Summary: psftp password prompt has local echo turned on
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mmokrejs(a)natur.cuni.cz
$ wine ~/software/win/psftp.exe 195.113.56.1
login as: mmokrejs
Using username "mmokrejs".
mmokrejs(a)195.113.56.1's password: xxxxxxx
Access denied
mmokrejs(a)195.113.56.1's password: xxxx
Access denied
mmokrejs(a)195.113.56.1's password:
Access denied
mmokrejs(a)195.113.56.1's password:
$
I cannot login at all, but that problably some other bug in the wine. The psftp comes from Saggam's webpage where one can find program called PuTTY, pscp, psftp, I guess you know them. I used latest version, 0.53b.
--
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=1475
Summary: unimplemented function netapi32.dll.NetStatisticsGet
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mmokrejs(a)natur.cuni.cz
$ wine wget http://some-url/*
wine: Unhandled exception, starting debugger...
WineDbg starting on pid 24
No debug information in ELF 'wine' ((nil))
Breakpoint 1 at 0x4000b660
No debug information in ELF '/usr/lib/wine/lib/libntdll.dll.so' (0x40014000)
No debug information in ELF '/usr/lib/wine/lib/libwine.so.1' (0x400ef000)
No debug information in ELF '/usr/lib/wine/lib/libwine_unicode.so.1' (0x40107000)
No debug information in ELF '/lib/libc.so.6' (0x401ff000)
No debug information in ELF '/lib/libm.so.6' (0x4032f000)
No debug information in ELF '/lib/libdl.so.2' (0x40352000)
No debug information in ELF '/lib/ld-linux.so.2' (0x40000000)
No debug information in ELF '/usr/lib/wine/lib/wine/kernel32.dll.so' (0x40693000)
No debug information in ELF '/usr/lib/wine/lib/wine/wsock32.dll.so' (0x40746000)
No debug information in ELF '/usr/lib/wine/lib/wine/ws2_32.dll.so' (0x4075e000)
No debug information in ELF '/usr/lib/wine/lib/wine/user32.dll.so' (0x40780000)
No debug information in ELF '/usr/lib/wine/lib/wine/gdi32.dll.so' (0x408ae000)
No debug information in ELF '/usr/lib/wine/lib/wine/advapi32.dll.so' (0x40928000)
No debug information in ELF '/usr/lib/wine/lib/wine/msvcrt.dll.so' (0x40956000)
No debug information in ELF '/usr/lib/libfreetype.so.6' (0x409bd000)
No debug information in ELF '/usr/lib/libz.so.1' (0x40a14000)
No debug information in ELF '/usr/lib/wine/lib/wine/x11drv.dll.so' (0x40a23000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x40356000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x40a82000)
No debug information in ELF '/usr/X11R6/lib/libXxf86dga.so.1' (0x40a99000)
No debug information in ELF '/usr/X11R6/lib/libXxf86vm.so.1' (0x40a9f000)
No debug information in ELF '/usr/X11R6/lib/libXv.so.1' (0x40aa4000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x40aa9000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x40ab7000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x40b96000)
No debug information in ELF '/lib/libpthread.so.0' (0x40d9a000)
No debug information in ELF '/usr/X11R6/lib/libXcursor.so.1' (0x40dea000)
No debug information in ELF '/usr/X11R6/lib/libXrender.so.1' (0x40df3000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2' (0x401e8000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2' (0x40e30000)
No debug information in ELF '/usr/lib/wine/lib/wine/netapi32.dll.so' (0x41370000)
No debug information in 32bit DLL 'C:\Windows\wget.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x40040000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL' (0x406c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40940000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x408c0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x407a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WS2_32.DLL' (0x40770000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WSOCK32.DLL' (0x40750000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL' (0x40970000)
No debug information in 32bit DLL 'C:\WINDOWS\LIBEAY32.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\WINDOWS\SSLEAY32.DLL' (0x40996000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40a30000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NETAPI32.DLL' (0x41380000)
Unhandled exception: unimplemented function netapi32.dll.NetStatisticsGet called in 32-bit code (0x41387058).
In 32-bit mode.
0x41387058 (NETAPI32.DLL..data+0x5058 in netapi32.dll.so): subl $4,%esp
Wine-dbg>where
Backtrace:
=>0 0x41387058 (NETAPI32.DLL..data+0x5058 in netapi32.dll.so) (ebp=406827d0)
1 0x413890c2 (NETAPI32.DLL.NetStatisticsGet+0x22 in netapi32.dll.so) (ebp=406827e0)
2 0x10042c73 (LIBEAY32.DLL.RAND_poll+0xa3 in C:\WINDOWS\LIBEAY32.DLL) (ebp=413890a0)
3 0x5d8908ec (NETAPI32.DLL.NetpInitOemString+0x1c500dea) (ebp=83e58955)
*** Invalid address 0x83e58955 (NETAPI32.DLL.NetpInitOemString+0x42ac8e53)
Wine-dbg>
I used wget for windows from http://space.tin.it/computer/hherold/
Get ftp://ftp.sunsite.dk/projects/wget/windows/ssllibs097b.zip and ftp://ftp.sunsite.dk/projects/wget/windows/wget20030519-unoff-b.zip to repeat the test.
--
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=1474
mmokrejs(a)natur.cuni.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|--help option initializes |--version option initializes
|configuration first |configuration first
--
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=1474
Summary: --help option initializes configuration first
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mmokrejs(a)natur.cuni.cz
Is this expected behaviour? I'd expect as a user that wine tell me it's version and exits, without creating any stuff in my home directory (especially as I ran it as root). :(
$ wine --version
!! ~/.wine/config misses
!! Setting up a config file
!! Setting up ~/.wine/fake_windows/
!! Setting up default registry.
!! Installation complete.
!! Set your drives in ~/.wine/config
$
--
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=1471
------- Additional Comments From martelsc(a)videotron.ca 2003-20-05 09:49 -------
[AppDefaults\\Warcraft III Demo.exe\\x11drv] (with backslash in the name of
the game) did not worked either... I commented out that section and
uncommentend the line "Desktop" = "640x480" in the [x11drv] section.
Now, the game do not start in full screen, but I have two black Warcraft3
window... The menu does not appear anymore!
What I got in wine:
fixme:d3d:IDirect3D8Impl_CreateDevice Requested full screen support not
implemented, expect windowed operation
fixme:d3d:IDirect3D8Impl_CheckDeviceFormat (0x403e41e0)->(Adptr:0,
DevType:(1,D3DDEVTYPE_HAL), AdptFmt:(23,D3DFMT_R5G6B5), Use:(0,none),
ResTyp:(3,D3DRTYPE_TEXTURE), CheckFmt:(21,D3DFMT_A8R8G8B8))
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel
(0x456dabd8,00010023,1):stub
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel
(0x454ba9c0,00010023,2):stub
fixme:win32:CreateIoCompletionPort (0xffffffff, (nil), 00000000, 00000000):
stub.
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 12 (X_ConfigureWindow)
Serial number of failed request: 24
Current serial number in output stream: 34
err:ntdll:RtlpWaitForCriticalSection section 0x40da0364 "x11drv_main.c:
X11DRV_CritSection" wait timed out, retrying (60 sec) tid=000e
err:ntdll:RtlpWaitForCriticalSection section 0x40da0364 "x11drv_main.c:
X11DRV_CritSection" wait timed out, retrying (60 sec) tid=000e
err:seh:EXC_DefaultHandling Unhandled exception code c000013a flags 0 addr
0x402c4032
--
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=1471
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
------- Additional Comments From spetreolle(a)yahoo.fr 2003-20-05 06:50 -------
Simon,
if you have spaces in the program name, they have to be escaped like this:
[AppDefaults\\Warcraft\ III\ Demo.exe\\...
If this doesnt work, try to change it in the global section or rename the program.
But in your case, the keyboard problem needs the managed mode.
Set "Managed" = "Y" and see if that helps, it works for 100% of my games.
For Wine helpers : do we already have created a bug to fix duplicates of 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=1473
Summary: Wine freezes notebook since XFree 4.3.0
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lfs(a)isl-gbr.de
Since i upgraded my notebook to XFree4.3 it freezes with (nearly) any application i tried. Only
thing i'm able to start without is notepad. I re-installed my complete Notebook (before
glibc2.2.5 now 2.3.1) and the problem still exist. I would give more information about this if i
could find a way to debug it, but since it simply freezes i have no idea what to do. It not only
freezes the X system, the complete system is gone (no ping, no telnet possible).
System specs:
Toshiba Satellite 2800-600
P3-1000
Geforce2 Go
KDE3.1.1a (tried with and without windowmanager)
XFree4.3.0
Glibc2.3.1
GCC 3.2.3
any recent Wine version since 20020509
compiling wine without opengl didnt help as well.
tried any nvidia driver
--
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=1470
------- Additional Comments From juan(a)virtual-orbis.com 2003-19-05 21:12 -------
please go to your BUILD directory (perhaps: /usr/src/redhat/BUILD) and do
a ./configure into wine-20030508 directory to check if you missed to install
some package. (like XFree86-devel, and so..)
--
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=1471
martelsc(a)videotron.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
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=1471
------- Additional Comments From martelsc(a)videotron.ca 2003-19-05 15:10 -------
No change; both syntax seem to be accepted since in the two cases I got a
window for few seconds.
Anyone is able to run Warcraft III demo in desktop mode? Does the keyboard
really work in this mode?
In any case we have to fix it in full screen mode...
--
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=1472
Summary: caracters with accents doesn't work
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Windows 98
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: robson(a)heurys.com.br
I can't use caracters with accents.
My keyboard is English-international and I tried to use notepad.exe and
caracters with accents doesn't appear as I hit then.
My ~/.wine/config appears to be ok.
On a terminal prompt I can use accents, so my keyboard configuration on Linux is Ok.
--
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=1471
------- Additional Comments From lionel.ulmer(a)free.fr 2003-19-05 14:22 -------
Could you try "640x480" instead of "640*480" ?
--
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 lionel.ulmer(a)free.fr 2003-19-05 14:19 -------
Please attach a +event,+mouse,+dinput log where you do what you describe here.
--
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-19-05 13:28 -------
With current cvs from today, there have been some improvements, the mouse does
show up, but it moves to the top of the game windows of it's own free will, the
top of the game window is now black (Or it shows what was in the background
before the game window came up); also you I get the mouse to come down, and when
I move it onto single player, the single player button gets a blue colour near
it (This is what is supposed to happen), but if I click, the mouse is instantly
moved above the single player button, and nothing else happens. The mouse just
slowly moves to the top of the window, and stays there, I can really get the
game to do anything else.
I'll attach a screenshoot.
--
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=1471
------- Additional Comments From martelsc(a)videotron.ca 2003-19-05 12:35 -------
>Yes, I have seen this before. Run in desktop mode.
How can I do that?
I tried to add that to my config file:
[AppDefaults\\Warcraft III Demo.exe\\x11drv]
"Desktop" = "640*480"
Now, a window appear for 3-4 seconds, but Warcraft III take the full screen
after 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=1464
------- Additional Comments From mike(a)theoretic.com 2003-19-05 12:03 -------
Apologies, I assumed as you and jake were seeing the same issue, and that jakes
problem was solved as being a broken setup, the same applied. Not sure what I
was thinking.
I'm using Wine on RH9 at the moment from CVS of a few days ago, and it works
fine. I'll update to latest CVS and try again 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=1471
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2003-19-05 11:47 -------
Yes, I have seen this before. Run in desktop mode.
--
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
dpaun(a)rogers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dpaun(a)rogers.com
------- Additional Comments From dpaun(a)rogers.com 2003-19-05 11:23 -------
The initial comment about the IMPORTS directive doesn't seem to be correct anymore.
In fact, IMPORTS is the official way of importing other DLLs.
DLLs that still need to be linked the Unix level (DLL separation Phase 1) are using
LDIMPORTS directive:
[dimi@dimi wine.src]$ grep LDIMPORTS dlls/*/*.in
dlls/kernel/Makefile.in:LDIMPORTS = ntdll.dll
That is, only kernel and ntdll seem to be tangled. Which means that all the
present bug reports associated with this meta-bug are stale, and they should
be closed, no?
--
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=1471
Summary: Warcratf 3 Demo -- Keyboard not working
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: martelsc(a)videotron.ca
Game:
Warcraft 3 Demo
Problem:
My keyboard do not work; When I try to type something (ie: in the "New Profile"
field), the text go in xterm instead of Warcraft III. In result, I can't try
the game...
--
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=1464
------- Additional Comments From trust_kno_1(a)hotmail.com 2003-19-05 10:50 -------
I have the exact same problem and thought it was only me since the new wine
seemed fixed for everyone else. I'm fully updated aswell. curiously crossover works.
--
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=1464
rebus(a)seznam.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INVALID |
------- Additional Comments From rebus(a)seznam.cz 2003-19-05 08:37 -------
Sorry, but it is strange to see bug report resolved by signing it INVALID
without single line of description.
Yesterday I have tried to compile it directly from CVS and the result was still
the same.
I use kernel from RH9, I use --with-nptl, I do not use LD_ASSUME_KERNEL=2.2.5
and I am still not able to run wine on none of 3 machines which I tested.
I still think it is a critical bug which prevents wine from running on RH9
machines. I am willing to give any additional info you ask.
thank you
--
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=1464
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
--
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=1469
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, regression
--
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=1469
------- Additional Comments From juan(a)virtual-orbis.com 2003-18-05 21:31 -------
Created an attachment (id=250)
--> (http://bugs.winehq.com/attachment.cgi?id=250&action=view)
Error message issued by winzip installer
I just did:
wine winzip70.exe
then the installer window appears, I pressed [Setup] button. And the process
started...(and failed with the message shown on attached picture)
--
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=1470
Summary: wine-20030508 wine-0.20030508-1.i386.rpm Still broken on
RH 9 ?
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: trust_kno_1(a)hotmail.com
As soon as Installation is complete either from source or the new binarys
I get:
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr
0x4028cdf4
no matter what app I try to load like notepad.exe it dumps that. I've also tried
export LD_ASSUME_KERNEL=2.2.5 and --with-ntpl but that didn't work either.
Redhat recently updated their kernel but i think it was only to fix the DoS issues.
Sorry if this is something stupid i've done on my part but nobody has anwsered
anyones questions in #winhq for hours (love sundays). reproduceable, but I hope
my 233 won't be asked to compile 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=1469
Summary: Regression: winzip 7.0 (SR-1) fails to install since
20030408 wine
Product: Wine
Version: 20030508
Platform: PC
URL: http://www.paed.uscourts.gov/winzip70.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: juan(a)virtual-orbis.com
It used to install without problems under wine-20030408, but now under wine-
20030508 it fails to install and pops up a message telling that it can't access
E:\ drive (default drive for /tmp). I returned to wine-20030408 and installed
well with the same config file made by the lastest version.
I know its an old version of the winzip software, but it shows us that
something is broken since then.
--
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=1468
Summary: Rebuild of .src.rpm on clean system can't run regedit
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ed(a)halley.cc
I am trying to build the latest .src.rpm on a clean RHL9 setup. I've gotten to
the point where it wants to run the wineserver just long enough to run regedit
to populate a new registry with winedefault.reg.
Since there's no LD_LIBRARY_PATH pointing at the build-root's dlls/ or libs/
areas, wineserver cannot load.
If I work manually in the build-root with a good LD_LIBRARY_PATH, it does get
slightly farther. But the miscemu/wine executable still has a hardwired future
path for ntdll.dll.so instead of relying on the LD_LIBRARY_PATH.
--------------------------------------------
...
+ sed 's|"Path" = "/c"$|"Path" =
"/home/halley/rpm/tmp/wine-20030508-root/usr/share/wine-c"|'
documentation/samples/config.rh
+ sed 's|"Path" = "${HOME}"$|"Path" = "/home/halley/rpm/BUILD/wine-20030508"|' -
+ WINEPREFIX=/home/halley/rpm/BUILD/wine-20030508/documentation/samples
+ programs/regedit/regedit winedefault.reg
programs/regedit/regedit: line 89: /home/halley/rpm/BUILD/wine-20030508
/home/halley/rpm/BUILD/wine-20030508/miscemu/wine: No such file or directory
programs/regedit/regedit: line 89: exec: /home/halley/rpm/BUILD/wine-20030508
/home/halley/rpm/BUILD/wine-20030508/miscemu/wine: cannot execute: No such file
or directory
error: Bad exit status from /home/halley/rpm/tmp/rpm-tmp.84491 (%install)
RPM build errors:
Bad exit status from /home/halley/rpm/tmp/rpm-tmp.84491 (%install)
--------------------------------------------
This is true whether I'm walking through the .spec or the tools/wineinstall at
this point.
Possible recommendation I've not yet tried: move the registry-populating work
out of the %install stage script, and into the %post stage script. %install is
run on the *builder's* system setting up the built files which must be copied
onto a user's system and shouldn't rely on running the app just built (since you
are usually building as non-root, and without the app fully installed, etc).
%post is for running on the *user's* system, and can use the full capabilities
and configuration of the user's permissions and system layout.
I really prefer the .src.rpm format to the tarball format. It allows me to
incorporate, develop and offer patches easier, and it helps me track the package
for uninstalls later. I've tried the past couple .src.rpms, and it's just not
able to get past this point.
--
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=1351
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jhei(a)iki.fi
Component|wine-dos |wine-console
Summary|JP soft's 4DOS |JP soft's 4DOS metabug
------- Additional Comments From juan(a)virtual-orbis.com 2003-18-05 14:19 -------
1) wineconsole 4dos.com gives me an error:
err:wineconsole:WINECON_Init failed to init.
2) wineconsole -- --backend=user 4dos.com
does work in a new window, but it shows several messages on parent
console: (will expand on separate bugreports)
err:int:DOSVM_Int09SendScan keyboard queue overflow (many times)
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters
(plus a set of registers that vary)
err:keyboard:X11DRV_ToUnicode Please report: no char for keysim 0000
...
..and so.
Moreover, it is hard to type (because of the above?) into the window.(It's slow
or doesn't get the keystrokes fast enough -I felt like having a very old hard-
to-type keyboard!)
About the 4dos features, I found only the command "dir" works, other known
commands as "list" or "describe"(very important!) doesn't work well.
I have to add on this:
-command "list" clears the screen and hangs
-command "describe" doesn't shows a message prompting the user to add
the description to a particular file:
example: (under w98)
c:\>describe wget.exe
Describe "C:\WGET.EXE" : program to get URLs fast
~~~~~~~~~~~~~~~~~~~~~~~~~(prompt)
under wine, there is a blank line instead of the prompt, but the
command does add the description typed on the blank line.
--
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=1351
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
------- Additional Comments From juan(a)virtual-orbis.com 2003-18-05 13:51 -------
5/17/2003 16:11:29 +0300
In an e-mail from: Jukka Heinonen <jhei(a)iki.fi>
On Thu, May 15, Juan wrote:
> It hangs after showing mixed output. (see updated bugreport
> http://bugs.winehq.com/show_bug.cgi?id=1351 )
You need to use wineconsole with user backend (curses backend
seems to be pretty buggy). Plain wine can only be used
when stdin/stdout streams are not needed or when you want to
redirect them (which doesn't really work with winedos right now).
I still consider this bug closed (unless you change the bug to list
4dos features that do not work), but I would like you to validate
it first.
--
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=1352
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
Version|unspecified |20030508
------- Additional Comments From juan(a)virtual-orbis.com 2003-18-05 13:48 -------
5/17/2003 16:11:29 +0300
In an e-mail from: Jukka Heinonen <jhei(a)iki.fi>
> > I have a feeling that bug #1352 is what prevents newer TakeCommand/32
> > versions from running. I have no idea what causes this bug.
Well, this bug seems quite difficult to track; even debugmsg using
+relay doesn't seem to give any meaningful information. I have
considered reverse engineering the code in order to see where
the buggy pointer comes from, but I probably won't have time to do
that. Reverse engineering wouldn't be that hard, really, because
it crashes soon after process starts up, but it would still require
lots of work.
--
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=1350
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[AllocConsole, |[AllocConsole,
|CONIN$/CONOUT$]Take command |CONIN$/CONOUT$]Take command
|/32 ver 3.01A displays |/32 ver 3.01A displays
|inverted "?" characters |inverted "?" characters
|instead of text in command |instead of text in command
|window & diverts I/O to |window, diverts I/O to
|console |console instead.
--
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=1464
------- Additional Comments From jake(a)bugzilla.org 2003-18-05 13:36 -------
I had previously placed |export LD_ASSUME_KERNEL=2.2.5| in my ~/.bashrc file to
get a previous CVS build of wine to work. I removed this and rebuilt wine and it
seems to function (except it doesn't work with the one App I really want it to:
Quicken 2003; it also doesn't seem to work very well w/Counter-Strike).
BTW, my machine (which I just got it working on) is an Athlon 1GHz w/512 MB RAM
upgraded from RH 8.0 (w/errata) to RH 9 (w/errata). My friend's machine is a P4
1.2 GHz w/512 MB RAM (IIRC) that was fresh installed w/RH 9 and then updated
w/errata.
--
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=1350
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|JP soft's Take command /32 |[AllocConsole,
|ver 3.01A displays "?" |CONIN$/CONOUT$]Take command
|characters instead of text |/32 ver 3.01A displays
|in command window |inverted "?" characters
| |instead of text in command
| |window & diverts I/O to
| |console
------- Additional Comments From juan(a)virtual-orbis.com 2003-18-05 13:36 -------
5/17/2003 16:11:29 +0300
In an e-mail from: Jukka Heinonen <jhei(a)iki.fi>
> > but TakeCommand/16 seems to show similar behaviour. It looks like
> > TC/16 calls DOS int21 routines for input/output and expects
> > that those interrupts somehow interact with TC/16 window. Input
> > related problem is quite easy to fix but I don't know how
> > TC/16 expects its window to be updated via int21.
>
> Now, you may check with the 32bit version too. :P
Yes, I checked that. It seems to have different bug than TC/16.
TC/32 bug is definetely related to Wine console handling code
(not wineconsole itself) which seems to work quite differently
under Windows. This is related to AllocConsole, CONIN$/CONOUT$ handles
and process initial handles. Nothing to do with winedos, anyway.
--
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=832
------- Additional Comments From lionel.ulmer(a)free.fr 2003-18-05 11:01 -------
Well, the goal of this list was mostly to :
1) do not have to always mail with 5 people in Cc:
2) archive some mails that could be useful later (for example, send a mail for
an architecture discussion and have it archived somewhere).
So this is mostly a private list (ie it's the equivalent of a private mail
exchange between people).
And how to get in this list ? Easy : be ready to produce some code :-)
--
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=1467
Summary: Cannot launch winmine
Product: Wine
Version: 20030115
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mpupat(a)free.fr
WHen I enter wine winemine I got in console :
fixme:reg:_nt_dump_lf unknown Win XP node id 0x686c: do we need to add support for
it ?
fixme:reg:_nt_dump_lf unknown Win XP node id 0x686c: do we need to add support for
it ?
fixme:reg:_nt_dump_lf unknown Win XP node id 0x686c: do we need to add support for
it ?
err:heap:HEAP_GetPtr Invalid heap (nil)!
err:heap:HEAP_GetPtr Invalid heap (nil)!
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
Then a window with :
Runtime Error !
Program C:\WINDOWS\system32\winmine.exe
R6016 - not enough space for thread data
And when I click OK, it comes 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=1448
------- Additional Comments From hatky(a)users.sf.net 2003-18-05 08:47 -------
Turns out bigzilla now limits non patch attachments to 1MB
--
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=1448
------- Additional Comments From hatky(a)users.sf.net 2003-18-05 08:03 -------
Well my full game does not work, same errors as before attaching debug 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=1449
------- Additional Comments From hatky(a)users.sf.net 2003-18-05 07:33 -------
Running it as
wine Tropico2 &> file.txt
get stack after the menu same with -debug +file....
while the game plays (the fucked drawing) you get a lot of these errors:
err:ddraw:set_render_state Specular Lighting not supported yet.
err:ddraw:d3ddevice_lock_update Wrong surface type for locking !
err:ddraw:d3ddevice_unlock_update Wrong surface type for locking !
--
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=1449
------- Additional Comments From hatky(a)users.sf.net 2003-18-05 07:25 -------
All posts and attachments were deleted with the new bugzilla version :(
Any way a new test cvs 19.5.2003 the menu now works and the game even loads
but:
1. Minor, the cursor colors are a bit off (a lot draker then the original)
2. Mager, the drawing is really fucked up (sorry for my language :) it draws lines in
many directions finaly you have the right picture (I am not sure how :) ) and then it
draws again. I tried "DesktopDoubleBuffered" = "Y", no change.
Thats all for this quick test.
Hatky.
--
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=832
------- Additional Comments From hatky(a)users.sf.net 2003-18-05 06:01 -------
And how do people get into that list?
Why not put it with the other wine lists?
--
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=1464
------- Additional Comments From jake(a)bugzilla.org 2003-17-05 22:13 -------
What's really strange (to me, at least) is that I installed RH 9 on a friends
machine, did all the errata updates, then grabed wine from CVS and
compiled/installed it and it worked 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=1464
------- Additional Comments From rebus(a)seznam.cz 2003-17-05 17:06 -------
Hello I have tested this on fresh installed machine with RedHat linux 9 with
original kernel and glib from distribution and it behaves the same.
--
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=958
------- Additional Comments From roz(a)one.net 2003-17-05 14:32 -------
That's odd, I had some comments here before.
I was using Windows Media Player.
--
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=1464
jake(a)bugzilla.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jake(a)bugzilla.org
------- Additional Comments From jake(a)bugzilla.org 2003-17-05 11:13 -------
I just tried to install from CVS and am seeing the same error... I can't even
get the registry to import (correct me if I'm wrong, but I think the "Could not
stat" errors can be ignored):
[jake@waldo regedit]$ ./regedit ../../winedefault.reg
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:
wine: Unhandled exception, starting debugger...
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr
0x4027b378
I did not use the --with-nptl option.
--
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=1448
------- Additional Comments From fenix(a)club-internet.fr 2003-17-05 07:09 -------
Currently i have UT2003 demo working on my tree (i'm waiting for alexandre commits).
It need a need code for d3d8 32 bit support and my last dinput patch.
Install works well.
Menu works well.
The game is playable but we have some colors problems (i'm investigating it)
For the videos (who don't use the 3d engine) we need a new quartz implementation
waiting for lionel to begin ;)
PS: what it's you problem with registry access ??
--
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=1464
Summary: Wine gets compiled under RedHat Linux 9, but it fails to
run (unhandled exception)
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rebus(a)seznam.cz
Hello,
I have got problems running wine under RedHat Linux 9.
I compile it with --with-nptl option. It compiles wel, but when I try to run it
by running "wine --debugmsg +all notepad" it always fails with errorn:
wine: Unhandled exception, starting debugger...
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr
0x40279df4
The very same error I get by running winecfg, winepath, winehelp.
Tested on three different machines
Hardware: Athlon 1200, Athlon 2000, Pentium 166MHz
System: RedHat Linux 9 (fresh install, no upgrade from 8.0.94)
updated kernel -2.4.20-9
updated glibc -2.3.2-27.9
--
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=777
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-05 18:49 -------
... and 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=777
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-05 18:48 -------
It works now... Im setting the bug as 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=1463
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-05 18:44 -------
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=1463
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From spetreolle(a)yahoo.fr 2003-16-05 18:44 -------
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=1463
Summary: test bug without description
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: spetreolle(a)yahoo.fr
--
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=832
------- Additional Comments From z_god(a)wanadoo.nl 2003-16-05 17:08 -------
There is a wine-d3d mailinglist at: wine-d3d(a)bbrox.org
--
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=1033
------- Additional Comments From z_god(a)wanadoo.nl 2003-16-05 16:55 -------
This has been fixed. WFM with Wine 20030508.
This bug can be closed.
--
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=1127
------- Additional Comments From R.J.Shearman(a)warwick.ac.uk 2003-05-16 08:07 -------
I've discovered the reason it corrupts the heap is because it destroys the
dialog in WM_INITDIALOG (patch on the way) but the reason it does this is still
unknown to me.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1127>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1406
marc_lavergne(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
------- Additional Comments From marc_lavergne(a)yahoo.com 2003-05-15 22:56 -------
Since there's a workaround, moving this to a normal severity. I haven't had a
chance to revisit it but I will get the heap alloc trace done shortly.
Workaround: modify LOCAL_GetBlock in memory/local.c to prevent arena==0 exits.
Not a permanent fix since it introduces an unhandled condition and is "the wrong
way to do things" anyhow.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1406>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1462
------- Additional Comments From reif(a)earthlink.net 2003-05-15 19:55 -------
Created an attachment (id=482)
example MFC program: slider.exe
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1462>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1462
Summary: vertical trackbar/slider doesn't render properly
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: reif(a)earthlink.net
Vertical trackbar/slider doesn't render properly.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1462>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1350
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20030318 |20030508
------- Additional Comments From juan(a)virtual-orbis.com 2003-05-15 15:54 -------
5/11/2003 12:12:31 +0300
In a mail from: Jukka Heinonen <jhei(a)iki.fi>
I have a feeling that bug #1352 is what prevents newer TakeCommand/32
versions from running. I have no idea what causes this bug.
I didn't find older TakeCommand/32 versions mentioned in bug #1350
but TakeCommand/16 seems to show similar behaviour. It looks like
TC/16 calls DOS int21 routines for input/output and expects
that those interrupts somehow interact with TC/16 window. Input
related problem is quite easy to fix but I don't know how
TC/16 expects its window to be updated via int21.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1350>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1351
------- Additional Comments From juan(a)virtual-orbis.com 2003-05-15 15:47 -------
under 20030508 version 4DOS now loads, but hangs without executing any
command...
(lots of int2f & int21 messages than ever)
[cad@pc-2 cad]$ wine 4dos.com
Warning: unprotecting the first 64KB of memory to allow real-mode calls.
NULL pointer accesses will no longer be caught.
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX d44d, BX 00bc, CX 0008, DX 0080, SI 1059, DI 0605, DS 00c7, ES f000
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX 4a33, BX 3dc0, CX 0010, DX 7a85, SI 0101, DI 1033, DS 00c7, ES 00c7
4DOS XMS swapping initialized (241K)
4DOS running under Windows 95
err:int:do_int2f_16 int2f: unknown/not implemented parameters:
int2f: AX 168f, BX 6d70, CX 0004, DX 0000, SI 0082, DI a999, DS 94e4, ES 94e4
4DOS 7.50 (Win95) DOS 7.00
Copyright 1988-2003 Rex Conn & JP Software Inc. All Rights Reserved
fixme:int21:INT_Int21Handler Unimplemented long file name function:
err:int21:INT_Int21Handler int21: unknown/not implemented parameters:
int21: AX 71a7, BX 0000, CX 0000, DX 01c2, SI 9ce6, DI 9cbe, DS 94e4, ES 94e4
4DOS, S/N 999001. This trial version of 4DOS may be used for up to 21 days
before purchase.
>> 21 days remain in your evaluation period. To learn about how the
>> evaluation period works see TRIAL.TXT.
To order call 410-810-8819, visit our web site at http://jpsoft.com/,
or see the order form in ORDERS.TXT.
fixme:int21:INT_Int21Handler Unimplemented long file name function:
err:int21:INT_Int21Handler int21: unknown/not implemented parameters:
int21: AX 71a7, BX 0000, CX 0000, DX 01c2, SI 9ce6, DI 9cbe, DS 94e4, ES 94e4
fixme:int21:INT_Int21Handler Unimplemented long file name function:
err:int21:INT_Int21Handler int21: unknown/not implemented parameters:
int21: AX 71a7, BX 0000, CX 0000, DX 01c3, SI a086, DI a05a, DS 94e4, ES 94e4
rem C:\ARCHIV~1\THEHAC~1\THD.EXE /NORES /NOMENSAJE
SET BLASTER=A220 I5 D1 T4
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ae00, BX a64a, CX ff16, DX ffff, SI a638, DI 58d0, DS 94e4, ES 94e4
REM - BY WINDOWS SETUP - C:\WINDOWS\COMMAND\MSCDEX /D:MVCD001 /M:10 /V /E
rem MODE CON CODEPAGE PREPARE=((850) C:\WINDOWS\COMMAND\EGA.CPI)
rem MODE CON CODEPAGE SELECT=850
rem KEYB LA,,C:\WINDOWS\COMMAND\KEYBOARD.SYS
SET
PATH=C:\windows;C:\windows\system;X:\;Y:\;C:\ARCHIV~1\ARCHIV~1\AUTODE~1;Y:\4DOS
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ae00, BX a64a, CX ff50, DX ffff, SI a638, DI 58d0, DS 94e4, ES 94e4
SET
PATH=C:\ARCHIV~1\THEHAC~1\;C:\windows;C:\windows\system;X:\;Y:\;C:\ARCHIV~1\ARCHIV~1\AUTODE~1;Y:\4DOS;Y:\4DOS
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ae00, BX a64a, CX ff6e, DX ffff, SI a638, DI 58d0, DS 94e4, ES 94e4
set comspec=Y:\4DOS\4dos.com
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ae00, BX a64a, CX ff19, DX ffff, SI a638, DI 58d0, DS 94e4, ES 94e4
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX d44e, BX 0000, CX 0029, DX 0000, SI 0082, DI a999, DS 94e4, ES 00c7
y:\>err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX d44e, BX 0001, CX 0042, DX 0000, SI 0082, DI a999, DS 94e4, ES 00c7
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1351>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1351
juan(a)virtual-orbis.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20030318 |20030508
------- Additional Comments From juan(a)virtual-orbis.com 2003-05-15 14:44 -------
5/11/2003 12:12:31 +0300
From: Jukka Heinonen <jhei(a)iki.fi> (in an e-mail to Juan Melgarejo)
4DOS calls those DESQview routines that really must be emulated
in order to get 4DOS working. But I already figured out why 4DOS
thinks it is running under DESQview (set date routine is used for
installation checks!). I also fixed a bunch of other bugs and 4DOS
should now work using latest Wine CVS version. Perhaps you should
verify this and close bug #1351 (or update it because editing command
line and some 4DOS commands do not work).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1351>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1457
prupe(a)myrealbox.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From prupe(a)myrealbox.com 2003-05-14 11:46 -------
Yep, that fixes it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1457>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.