http://bugs.winehq.org/show_bug.cgi?id=6288
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |riklaunim(a)gmail.com
--- Comment #13 from Lei Zhang <thestig(a)google.com> 2008-03-12 01:13:42 ---
*** Bug 9305 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6288
Lei Zhang <thestig(a)google.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #3708|application/octet-stream |text/plain
mime type| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6288
--- Comment #12 from Lei Zhang <thestig(a)google.com> 2008-03-12 01:10:07 ---
Well, does the problem happen with patch 26498 as well?
Hmm, I got stuck in the underdark ~7 years ago and never bothered to finish the
game.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6311
--- Comment #26 from EA Durbin <ead1234(a)hotmail.com> 2008-03-12 01:01:05 ---
Created an attachment (id=11335)
--> (http://bugs.winehq.org/attachment.cgi?id=11335)
bug demonstration
the addition of the !valid_rects in the client_changed assignment causes it to
enter into the if (frame_changed || client_changed) block as client_changed is
now set because !valid_rects is true, whereas before this commit it never
entered into this if statement.
skipping this chunk of code within this if statement also fixes my application
-----
if (!is_desktop_window(win))
offset_region( win_rgn, -client_rect->left, -client_rect->top );
if (exposed_rgn)
{
union_region( exposed_rgn, exposed_rgn, win_rgn );
if (win_rgn != old_vis_rgn) free_region( win_rgn );
}
else
{
exposed_rgn = win_rgn;
if (win_rgn == old_vis_rgn) old_vis_rgn = NULL;
}
----
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6311
--- Comment #25 from EA Durbin <ead1234(a)hotmail.com> 2008-03-11 23:34:20 ---
Created an attachment (id=11333)
--> (http://bugs.winehq.org/attachment.cgi?id=11333)
this patch demonstrates the cause of the bug, fixes my application
This one line in the patch is what broke this application's functionality
@@ -1500,42 +1500,46 @@ static void set_window_pos( struct windo
client_changed = (client_rect->left - old_client_rect.left !=
x_offset ||
+ !valid_rects ||
If I revert this one line in the client_changed assignment then the application
works again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6311
EA Durbin <ead1234(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|-unknown |wineserver
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11555
Summary: Need a real WinHttpDetectAutoProxyConfigUrl, not a stub
for .NET
Product: Wine
Version: 0.9.54.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)gmail.com
Am trying very slowly to get a particular large .NET app working under Wine.
I can't test anything under .55 due to a regression that makes the .NET
installer fail.
A first pass indicates we need a WinHttpDetectAutoProxyConfigUrl (it dies hard
otherwise). Funny, this always fail implementation is good enough, possibly
because it sets an error code or nulls out its result pointer.
OK, this patch creates one.
--- wine-0.9.54/dlls/winhttp/main.bak 2008-02-11 20:54:48.000000000 -0800
+++ wine-0.9.54/dlls/winhttp/main.c 2008-02-11 21:00:01.000000000 -0800
@@ -129,3 +129,16 @@
SetLastError(ERROR_NOT_SUPPORTED);
return NULL;
}
+
+/**********************************************************************
+ * WinHttpDetectAutoProxyUrl
+ */
+
+BOOL WINAPI WinHttpDetectAutoProxyConfigUrl(DWORD flags, LPWSTR *url)
+{
+ /* This can never work in this environment.
+ * Hope that it assumes transparent. */
+ SetLastError(ERROR_NOT_SUPPORTED);
+ *url = NULL;
+ return FALSE;
+}
--- wine-0.9.54/dlls/winhttp/winhttp.spec 2008-02-11 20:54:39.000000000
-0800
+++ wine-0.9.54/dlls/winhttp/winhttp.spec.bak 2008-02-11 20:52:39.000000000
-0800
@@ -8,7 +8,7 @@
@ stub WinHttpConnect
@ stub WinHttpCrackUrl
@ stub WinHttpCreateUrl
-@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
+@ stub WinHttpDetectAutoProxyConfigUrl
@ stub WinHttpGetDefaultProxyConfiguration
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(ptr)
@ stub WinHttpGetProxyForUrl
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7189
--- Comment #32 from Dan Kegel <dank(a)kegel.com> 2008-03-11 19:34:55 ---
Just tried your recipe now. I couldn't quite see
what you meant by
* .NET Framework SDK
so I selected that, and deselected Quickstart samples and Tools under it.
The installation put up an error dialog
saying "Microsoft .NET Framework 2.0 has encountered a problem during setup."
but the overall setup succeeded.
The app looked installed, but:
cl.exe failed with "Library mspdb80.dll not found",
even though it looks like that dll is present in plausible places
(C:/Program Files/Microsoft Visual Studio 8/Common7/IDE,
c:/Program Files/Common Files/Microsoft Shared/VSA/8.0/VsaEnv).
and
devenv.exe crashed after putting up a splash screen.
So I guess the minimal installer bug is down to that one dialog I saw?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11960
Summary: Legacy 5 - created web pages cannot be viewed in browser
from within Legacy.
Product: Wine
Version: 0.9.57.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aganderson(a)ukonline.co.uk
While checking out functionality of Legacy 5, I created a set of web pages
successfully, except that the dialog option to view the pages in a browser did
not work, either with Konqueror or Firefox.
I had created the pages to a folder in my home folder [drive y:], and I think
the browsers were objecting to this address. Drive d: caused same trouble,
etc.
The window for selecting the location for the creation of the web pages cannot
give access to conventional linux drive addresses, instead it offers only
windows drives.
The pages are accessible directly via browser, just not via Legacy.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8922
--- Comment #3 from Dan Kegel <dank(a)kegel.com> 2008-03-11 19:03:14 ---
I can't download that screencast, can you
upload it to a different site?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.