http://bugs.winehq.org/show_bug.cgi?id=2035
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tony_lambregts(a)telusplanet.n
| |et
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2036
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|tony_lambregts(a)telusplanet.n|
|et |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2036
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tony_Lambregts(a)telusplanet.n
| |et
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2041
Summary: LFN DOS API is not turned on in all cases
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)hotmail.com
The DOS API for long file names is not available on all possible
Dos/Windows configurations that would have it. In particular:
DOS LFN is available on Win2000 and WinXP (wine in nt4 mode)
-- Note that this is not true of NT4 itself (what to do?)
DOS LFN is available on Win3.1 when dosver >= 7.0 & IFSHELP.SYS loaded
Simple overzealous fix: make DOS LFN available in *all* cases
(probably no program will break if it sees LFN when there shouldn't be)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2040
------- Additional Comments From lionel.ulmer(a)free.fr 2004-20-02 10:34 -------
If you do "ls -l `which ping`" on your Linux box, you will get :
-rwsr-xr-x 1 root root 15312 Nov 3 1999 /bin/ping
And you will see the SUID bit set.
In other words, in the Unix world, only root can send ICMP packets. So to be
able to ping without using the 'ping' program, you need to be root.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2033
sam_herzog(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From sam_herzog(a)yahoo.com 2004-20-02 05:14 -------
I have installed the daily build of 20.Feb.2004 and the problem is gone.
So looks like it is fixed now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2040
Summary: ICMP
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: reisch.zoltan(a)photel.hu
Hi all..
When I run an delphi compiled binary under wine , and if I use ping (ICMP) the
wine show a warning and drop the program to debugger.
But it dosn't take when I logged in as Root.
I don't want login as Root for I can ping .
Why must I login as Root for I can use ICMP with wine+winprog ?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2039
Summary: read float bug in scanf.h in msvcrt.dll.so
Product: Wine
Version: 20040213
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elmkni(a)freenet.de
Hi,
my name is Elmar Knittel (elmkni(a)freenet.de),
and I might have found a little bug in wine :(
I have got SuSE Linux 8.2 personal and
wine-20040213-SuSELinux82.i586.rpm and
wine-20040213-SuSELinux82.src.rpm from
sourceforge.net/projects/wine.
There seems to be problem within the scan functions
in wine-20040213/dlls/msvcrt/scanf.h, line 265/266:
/* get first digit. */
if (!_ISDIGIT_(nch)) break;
break is triggered by decimals without leading digit, e.g:
//---------------------------------------------------------------------
//
// test.c - compile with MinGW under WIN32
//
// DEPEND = test.c
// SHRINK = upx --best --crp-ms=999999 --nrv2b
// CFLAGS = -s -Os -ffast-math -DNDEBUG -mconsole -march=pentium4
// EXE = test.exe
// CC = gcc
//
// .PHONY: $(EXE)
// $(EXE): $(DEPEND)
// $(CC) $(CFLAGS) $? -o$@
// $(SHRINK) $@
//
//---------------------------------------------------------------------
#include <stdio.h>
int main()
{
int i;
static float r,g,b;
const char *s = "0 .7 0";
printf("\n\tBefore: r = %f, g = %f, b = %f",r,g,b);
i = sscanf(s,"%f %f %f",&r,&g,&b);
printf("\n\tAfter : r = %f, g = %f, b = %f",r,g,b);
printf("\n\tBackgroundColorString is: `%s`, Return is: %i\n\n",s,i);
return 0;
}
//---------------------------------------------------------------------
The output of <wine test> should be:
Before: r = 0.000000, g = 0.000000, b = 0.000000
After : r = 0.000000, g = 0.700000, b = 0.000000
BackgroundColorString is: `0 .7 0`, Return is: 3
but actually is:
Before: r = 0.000000, g = 0.000000, b = 0.000000
After : r = 0.000000, g = 0.000000, b = 0.000000
BackgroundColorString is: `0 .7 0`, Return is: 1
where the value of g in line 2 has not changed to 0.700000
and the return value of the sscanf function is 1, not 3.
A possible solution might be to insert:
if (nch == '.') {
cur = 0;
goto HANDLE_DECIMALS;
}
directly after /* get first digit. */
in line 265 of original scanf.h and:
HANDLE_DECIMALS:
directly after /* handle decimals */
in line 276 of original scanf.h.
Probably not the best solution, but it works.
By the way; How do I manage to compile *only*
msvcrt.dll.so? I tried make in the msvcrt-dir,
but just the seperate object files were gene-
rated, not the whole library... so I had to
compile the complete wine-suit in order to
get my patched msvcrt.dll.so ;}
Please, drop me a line, if there is a more
simple way to get a single library. Thanks.
With best regards,
Elmar Knittel, elmkni(a)freenet.de
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2018
------- Additional Comments From reif(a)earthlink.net 2004-19-02 16:03 -------
Could you please create a trace using:
wine --debugmsg +wave,+dsound,+dsound3d program.exe >& trace
where program.exe is your program.
Also, is this native OSS or alsa emulated?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2029
------- Additional Comments From hatky(a)users.sf.net 2004-19-02 11:00 -------
I see you already know the problem and the fix, why not send a patch of the
change in the make file to wine-devel@winehq,org?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1958
gillb4(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From gillb4(a)telusplanet.net 2004-19-02 10:51 -------
I use Nvidia drivers with kernel 2.6.3. To resolve this bug, I re-installed
Mesa, gle and Glut (and re-started the X server). I don't know how/why they got
messed up, although I upgrade my system with yum (frequently) and a
library/configuration/path could have been overwritten at some point.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2032
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |LATER
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:41 -------
This is a known problem, should be fixed by the upcoming WM rewrite. Alex has
been experimenting lately with another way to fix this as well. For now run the
installer in desktop mode, and the problem should be solved.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2030
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:40 -------
This is due to IESETUP using its own advapi dll which doesn't implement a
registry function used by our GDI. Unfortunately it still exports it, it simply
calls through (not sure if it's a PE forward or not) to CommonUnimpStub.
Not sure what to about this. In my installer script I simply force advapi to
builtin:
WINEDLLOVERRIDES="advapi32=b" wine ie6setup.exe
for instance
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2031
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:38 -------
Try setting Wine to emulate NT instead of 9x in the config file
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=768
fojtik(a)htc.honeywell.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20020509 |20040213
------- Additional Comments From fojtik(a)htc.honeywell.cz 2004-19-02 03:50 -------
Hi all.
It seems to be a good job, the Micrographic designer seems to start working
with 20040213.
There are another problems: icons are inverted, but a new bug report should be
opened for this. Also several Errors are logged into console.
But it works!
You could test it and close this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1958
------- Additional Comments From emanuele(a)fabrizio.com 2004-19-02 03:07 -------
Confirm same behavior on my system:
kernel 2.4.24
gcc-3.2.1 (also tried with gcc-2.95.3)
nvidia-1.0-5336
Tried both manually and through tools/wineinstall and make bailed out at the
same point with the same complaint
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2036
Summary: CTreeCtrl : TREEVIEW_* kompatibility
Product: Wine
Version: 20040213
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Johann.Obermayr(a)fastrun.at
Hi,
in TREEVIEW_Collapse & TREEVIEW_Expand
Line
if (bUser || !(wineItem->state & TVIS_EXPANDEDONCE))
TREEVIEW_SendExpand...
correct is
if (bUser && !(wineItem->state & TVIS_EXPANDEDONCE))
TREEVIEW_SendExpand...
because SendExpand notify only send if bUser ( bNotify) flag
is set.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2031
------- Additional Comments From marcus(a)jet.franken.de 2004-19-02 00:01 -------
*** Bug 2027 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2027
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From marcus(a)jet.franken.de 2004-19-02 00:01 -------
*** This bug has been marked as a duplicate of 2031 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1597
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2004-18-02 23:55 -------
is fixed in 20040213
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2035
Summary: winealsa does not work in CVS as of 2/17/2003
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brettholcomb(a)charter.net
When ~/.wine/config is changed to have
"Drivers" = "winealsa.drv" instead of "Drivers" = "wineoss.drv"
I get this on startup. This is with Alsa 1.0.2.
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\IMM32.DLL' (0x42350000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEALSA.DRV' (0x42880000)
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x00000000).
In 32-bit mode.
0x00000000: addb %al,0x0(%eax)
Wine-dbg>
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1597
kairo(a)kairo.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |kairo(a)kairo.at
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2019
the-fallen(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #533|application/octet-stream |text/plain
mime type| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.