http://bugs.winehq.com/show_bug.cgi?id=1590
Summary: comm driver config problem
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: f.gockel(a)t-online.de
There is a typo in file dlls/kernel/comm.c. It makes the configuration program
for the Fritz!X isdn adaptor - and maybe other programs too - fail setting up
the serial port.
This diff fixes it.
--- dlls/kernel/comm.c.orig 2003-07-12 15:38:22.000000000 +0200
+++ dlls/kernel/comm.c 2003-07-12 15:38:43.000000000 +0200
@@ -1927,8 +1927,10 @@
return FALSE;
r = *lpdwSize < sizeof(COMMCONFIG);
+ TRACE("DEREF_lpdwSize=0x%x sizeof_COMMCONFIG=0x%x r=0x%x\n",
+ *lpdwSize,sizeof(COMMCONFIG),r);
*lpdwSize = sizeof(COMMCONFIG);
- if(!r)
+ if(r)
return FALSE;
lpCommConfig->dwSize = sizeof(COMMCONFIG);
--
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=1585
------- Additional Comments From lionel.ulmer(a)free.fr 2003-12-07 06:36 -------
Can you attach a +ddraw log ?
(wine --debugmsg +ddraw .....exe 2> wine.log)
Then you compress wine.log and attach to this bug report.
--
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=1581
------- Additional Comments From beer.info(a)videotron.ca 2003-11-07 19:59 -------
Here we go... to reproduce the problem do this:
setenv CFLAGS -O0
./configure --prefix=/usr/local/wine
make depend ; make
I'm not sure why the -O0 flags would cause this problem?
gcc -o wine -Wl,--section-start,.interp=0x3c000100 main.o -L../dlls -lntdll.dll
-L../libs/wine -lwine -L../libs/unicode -lwine_unicode -L../libs/port -lwine_port
../dlls/libntdll.dll.so: undefined reference to `InterlockedCompareExchange'
../dlls/libntdll.dll.so: undefined reference to `InterlockedExchangeAdd'
collect2: ld returned 1 exit status
make[1]: *** [wine] Error 1
make[1]: Leaving directory `/home/packages/downloads/wine-20030709/miscemu'
make: *** [miscemu] Error 2
--
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=1309
------- Additional Comments From phil(a)mail.ru 2003-11-07 18:16 -------
Still, on my system (ru_RU.UTF-8) I can enter Cyrillic text in Wine only with
this patch. I attached a newer version of the patch (sync'ed with CVS).
Maybe something is wrong with my 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=1309
phil(a)mail.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #310 is|0 |1
obsolete| |
------- Additional Comments From phil(a)mail.ru 2003-11-07 18:13 -------
Created an attachment (id=313)
--> (http://bugs.winehq.com/attachment.cgi?id=313&action=view)
A newer version of the same 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=1553
prupe(a)myrealbox.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From prupe(a)myrealbox.com 2003-11-07 17:42 -------
Fixed in dlls/ntdll/file.c v1.28
--
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=1561
------- Additional Comments From rondinos(a)hotmail.com 2003-11-07 17:05 -------
I tried using an IP-address instead of hostmask, it's connecting to the server
and as soon as I am connected on the server it shuts down and the window closes
it's connecting and as soon it's connected it closes 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=1561
------- Additional Comments From peter(a)lego-hc11.de 2003-11-07 16:56 -------
Have the same Bug with FreeBSD an wine.
For example mIRC does not connect to any server.
But I get mIRC working using IP instead of domain for server-adresse.
But this is no solution I think.
P.S.: It seems to be a DNS-Lookup 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=1562
------- Additional Comments From peter(a)lego-hc11.de 2003-11-07 16:49 -------
Have the same problem with FreeBSD 4.8 and wine!
For example mIRC does not work.
But I get mIRC working usind IP instead of domain for server-adresse.
It seems to be a DNS-Lookup 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.