The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
RE: MSXML
by Andriy H. on Wednesday September 8th 2010, 6:29
Dear Dmytro,
The Lingvo 12 are not working from wine-1.2-rc5 release. I found a small workaround disabling some functionality that seems to be not very important at the moment.Applying this patch gives you possibility to run Lingvo 12 with recent versions of wine (mine is 1.3.2).
So either you should install wine-1.2-rc5, or get wine sources, patch them and compile install wine by yourself.
Here is patch :
---------------------------------------
--- b/dlls/shdocvw/navigate.c
+++ a/dlls/shdocvw/navigate.c
@@ -791,7 +791,9 @@ HRESULT navigate_url(DocHost *This, LPCWSTR url, const VARIANT *Flags,
}
}
- hres = async_doc_navigate(This, *new_url ? new_url : url, headers, post_data,
+//AH hres = async_doc_navigate(This, *new_url ? new_url : url, headers, post_data,
+// post_data_len, TRUE);
+ hres = async_doc_navigate(This, url, headers, post_data,
post_data_len, TRUE);
}else {
task_navigate_bsc_t *task;
--------------------------------------------------------------------
Cut this anf save to file patch. Then in the wine's source root type:
patch dlls/shdocvw/navigate.c