http://bugs.winehq.com/show_bug.cgi?id=1636
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |LATER
Summary|rpcrt4.dll error when |RpcNetworkIsProtseqValid
|launching outlook 2000 |
------- Additional Comments From mike(a)theoretic.com 2003-30-10 13:54 -------
I'll close this bug to get it off the radar, though of course the bug is still
not fixed. Somebody needs to implement this function, but unfortunately there
are very few with the knowledge needed.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1541
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From mike(a)theoretic.com 2003-30-10 13:52 -------
OK, apparently we're still not 100% conformant to windows here, reopening. I'm
not knowledgable enough about socket programming to know how to fix it though.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1541
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)theoretic.com 2003-30-10 03:21 -------
Should be fixed in the latest release
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1170
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From spetreolle(a)yahoo.fr 2003-29-10 22:42 -------
Attachment is yet unavailable since this bug has been restored.
The files seems to be available at the moment at different locations like
http://ftp.cac.psu.edu/pub/access/win95/isdn/Msvbvm50.exe
I renamed all instances of advpack in my system and ran the installation with:
WINEDLLSOVERRIDES='advpack=n' wine Msvbvm50.exe --debugmsg +dosfs,+loaddll &>a
This bug now looks fixed to me.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1803
------- Additional Comments From ryan(a)linux-gaming.com 2003-29-10 17:33 -------
Latest build from CVS.
Should i add something to the config?
e.g. "Windows" = "version"?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1805
Summary: InternetCrackUrl incorrectly sets dwUrlPathLength
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jan_lists(a)sporbeck-family.de
Hi,
During some application testing, we discovered that WinE does not correctly
mimic the WinINet function InternetCrackUrl. The real WinAPI sets the
dwUrlPathLength member of the URL_COMPONENTS structure to additionally hold
the extra info of the given URL if the extra info is not requested as a
separate component. Although this behaviour is not well documented by the
Win SDK, it is for instance implemented on WinXP, Win2000 and WinME and
therefore might be considered to be intended by Microsoft.
The following lines of code demonstrate the problem:
LPCTSTR lpszURL = _T("http://www.myserver.com/myscript.php?arg=1");
URL_COMPONENTS url;
// call 1: crack out url path and extra info
::ZeroMemory(&url, sizeof(url));
url.dwStructSize = sizeof(url);
url.dwHostNameLength = 1;
url.dwUrlPathLength = 1;
url.dwExtraInfoLength = 1;
::InternetCrackUrl(lpszURL, 0, 0, &url);
// dwUrlPathLength is 13, holding "/myscript.php"
// call 2: only crack out url path
::ZeroMemory(&url, sizeof(url));
url.dwStructSize = sizeof(url);
url.dwHostNameLength = 1;
url.dwUrlPathLength = 1;
::InternetCrackUrl(lpszURL, 0, 0, &url);
// now, dwUrlPathLength should be 19, holding "/myscript.php?arg=1",
// while WinE still sets it to 13
OK, it is of course no great deal to write code that correctly runs on real
Win systems and on WinE (2-3 lines did it). But programers who rely on this
behaviour will for example wonder why their applications don't transmit any
HTTP GET parameters when they call HttpOpenRequest with lpszObjectName set
to the URL path component returned by InternetCrackUrl...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1803
------- Additional Comments From dclark(a)akamail.com 2003-29-10 13:55 -------
Umm, PeekNamedPipe not implemented? What version of Wine are you using? That
function has been implemented in Wine for quite awhile.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1804
dclark(a)akamail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From dclark(a)akamail.com 2003-29-10 13:52 -------
This is a user error. Please ask user questions on wine-users. Filing a bug
report is not the appropriate method for getting 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=1804
Summary: Error in installation
Product: Wine
Version: 20030911
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fa_ebora(a)hotmail.com
this is a error when i install wine how i can fixed them...please help me ...
i don't what i can do for this error b'cos i'm a beginner user of linux...
[admin@localhost wine-20031016]$ ./tools/wineinstall
WINE Installer v0.74
Running configure...
configure: creating cache config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
Configure failed, aborting install.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.