http://bugs.winehq.org/show_bug.cgi?id=2599
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-06-12 01:15 -------
This patch looks correct. Please submit it to wine patches for inclusion into CVS
--
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=2599
Summary: It appears that tabs are not parsed properly by wcmd?
Product: Wine
Version: 20041201
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bgrayson(a)freescale.com
I am trying to install an AutoDesk viewer. It invokes a bat file that …
[View More]contains
the following lines:
copy ^Imsvcp71.dll ^Ieplot\*.*^M$
copy ^Imsvcr71.dll^Ieplot\*.*^M$
I added some printf's to WCMD_Copy(), which shows that it is receiving param1 of
"^Imsvcp71.dll".
In addition, from the second line, since ^I is not recognized as separating
parameters, all of that ends up in param1.
Here is a patch that at least separates the two parameters appropriately
(changes to WCMD_parse):
--- wcmdmain.c.orig Sun Dec 5 23:53:27 2004
+++ wcmdmain.c Sun Dec 5 23:53:59 2004
@@ -696,6 +696,7 @@
*q = '\0';
break;
case ' ':
+ case '\t':
s++;
break;
case '"':
@@ -713,7 +714,7 @@
case '\0':
return;
default:
- while ((*s != '\0') && (*s != ' ')) {
+ while ((*s != '\0') && (*s != ' ') && (*s != '\t')) {
if (p == 0) *p1++ = *s++;
else if (p == 1) *p2++ = *s++;
else s++;
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2433
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From puoti(a)inwind.it 2004-05-12 17:32 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list …
[View More]for the bug, or are watching someone who is.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2433
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From puoti(a)inwind.it 2004-05-12 17:32 -------
Winesetuptk is no longer available, as it isn't needed by wine any more.
--
Configure bugmail: …
[View More]http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2569
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)navi.cx 2004-05-12 16:08 -------
Fixed in CVS
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are …
[View More]receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2593
matchmovie(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From matchmovie(a)yahoo.com 2004-04-12 22:37 -------
I bit the bullet and ran this down. windows/message.c required a small addition,
now …
[View More]works fine, I am submitting a patch for it.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2598
Summary: Problem compiling wine 20041201
Product: Wine
Version: 20041201
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre42d(a)9online.fr
[...]
make[2]: Entering directory `/tmp/wine-20041201/dlls/ntdll'
gcc -c -I. -I. -I../../include …
[View More]-I../../include -D__WINESRC__ -D_NTSYSTEM_
-D_REENTRANT -fPIC -Wall -pipe -mpreferred-stack-boundary=2 -fno-strict-aliasing
-gstabs+ -Wpointer-arith -s -O3 -march=i686 -o cdrom.o cdrom.c
In file included from /usr/include/asm/byteorder.h:57,
from /usr/include/linux/cdrom.h:14,
from cdrom.c:63:
/usr/include/linux/byteorder/little_endian.h:43: error: parse error before
"__cpu_to_le64p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_le64p':
/usr/include/linux/byteorder/little_endian.h:45: error: `__le64' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h:45: error: (Each undeclared
identifier is reported only once
/usr/include/linux/byteorder/little_endian.h:45: error: for each function it
appears in.)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:47: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__le64_to_cpup':
/usr/include/linux/byteorder/little_endian.h:49: error: `p' undeclared (first
use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:51: error: parse error before
"__cpu_to_le32p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_le32p':
/usr/include/linux/byteorder/little_endian.h:53: error: `__le32' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:55: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__le32_to_cpup':
/usr/include/linux/byteorder/little_endian.h:57: error: `p' undeclared (first
use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:59: error: parse error before
"__cpu_to_le16p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_le16p':
/usr/include/linux/byteorder/little_endian.h:61: error: `__le16' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:63: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__le16_to_cpup':
/usr/include/linux/byteorder/little_endian.h:65: error: `p' undeclared (first
use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:67: error: parse error before
"__cpu_to_be64p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_be64p':
/usr/include/linux/byteorder/little_endian.h:69: error: `__be64' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h:69: error: parse error before
"__swab64p"
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:71: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__be64_to_cpup':
/usr/include/linux/byteorder/little_endian.h:73: error: `p' undeclared (first
use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:75: error: parse error before
"__cpu_to_be32p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_be32p':
/usr/include/linux/byteorder/little_endian.h:77: error: `__be32' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h:77: error: parse error before
"__swab32p"
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:79: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__be32_to_cpup':
/usr/include/linux/byteorder/little_endian.h:81: error: `p' undeclared (first
use in this function)
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:83: error: parse error before
"__cpu_to_be16p"
/usr/include/linux/byteorder/little_endian.h: In function `__cpu_to_be16p':
/usr/include/linux/byteorder/little_endian.h:85: error: `__be16' undeclared
(first use in this function)
/usr/include/linux/byteorder/little_endian.h:85: error: parse error before
"__swab16p"
/usr/include/linux/byteorder/little_endian.h: At top level:
/usr/include/linux/byteorder/little_endian.h:87: error: parse error before '*' token
/usr/include/linux/byteorder/little_endian.h: In function `__be16_to_cpup':
/usr/include/linux/byteorder/little_endian.h:89: error: `p' undeclared (first
use in this function)
make[2]: *** [cdrom.o] Error 1
make[2]: Leaving directory `/tmp/wine-20041201/dlls/ntdll'
make[1]: *** [ntdll] Error 2
make[1]: Leaving directory `/tmp/wine-20041201/dlls'
make: *** [dlls] Error 2
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=2597
Summary: Directory naming
Product: Wine
Version: unspecified
Platform: Other
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre42d(a)9online.fr
I would just let you know that I think it would be great if you could do a
little improvement :
when you …
[View More]untar Wine-20041201.tar.gz it creates a directory named "wine-20041201".
It would be more logical if this directory would be named "Wine-20041201" or if
the tarball would be named wine-20041201.tar.gz (same name for both).
--
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.
[View Less]