Hello,
nearly all recent install shield installer fail for me, similar like: ... fixme:ole:RegisterTypeLib Registering non-oleautomation interface! fixme:sync:SetNamedPipeHandleState 0x1f0 0x42ad30e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x214 0x42ddc0e0 (nil) (nil) fixme:ole:RpcChannelBuffer_GetDestCtx (0x42551d8c,0x42551d90), stub! fixme:sync:SetNamedPipeHandleState 0x214 0x432080e0 (nil) (nil) fixme:ole:NdrConvert (pStubMsg == ^0x406cca80, pFormat == ^0x431041ba): stub. fixme:ole:NdrConvert (pStubMsg == ^0x42551d18, pFormat == ^0x431041ba): stub. err:ole:get_unmarshaler_from_stream Failed to read common OBJREF header, 0x00000000 fixme:ole:RpcChannelBuffer_GetDestCtx (0x42551d88,0x42551d8c), stub! fixme:sync:SetNamedPipeHandleState 0x1e8 0x42ff00e0 (nil) (nil) fixme:ole:NdrConvert (pStubMsg == ^0x406cca7c, pFormat == ^0x431041c8): stub. fixme:ole:NdrConvert (pStubMsg == ^0x42551d14, pFormat == ^0x431041c8): stub. fixme:sync:SetNamedPipeHandleState 0x1e4 0x432080e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1e4 0x42bd60e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1e4 0x42ad30e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1ec 0x42bd60e0 (nil) (nil) fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x4003 -> 0x8) 42de13b4
Do I have some bogus registry entries, did I miss some dll registration or is this the expected behaviour?
Thanks
On Fri, Apr 01, 2005 at 10:53:36AM +0200, Uwe Bonnes wrote:
Hello,
nearly all recent install shield installer fail for me, similar like: ... fixme:ole:RegisterTypeLib Registering non-oleautomation interface! fixme:sync:SetNamedPipeHandleState 0x1f0 0x42ad30e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x214 0x42ddc0e0 (nil) (nil) fixme:ole:RpcChannelBuffer_GetDestCtx (0x42551d8c,0x42551d90), stub! fixme:sync:SetNamedPipeHandleState 0x214 0x432080e0 (nil) (nil) fixme:ole:NdrConvert (pStubMsg == ^0x406cca80, pFormat == ^0x431041ba): stub. fixme:ole:NdrConvert (pStubMsg == ^0x42551d18, pFormat == ^0x431041ba): stub. err:ole:get_unmarshaler_from_stream Failed to read common OBJREF header, 0x00000000 fixme:ole:RpcChannelBuffer_GetDestCtx (0x42551d88,0x42551d8c), stub! fixme:sync:SetNamedPipeHandleState 0x1e8 0x42ff00e0 (nil) (nil) fixme:ole:NdrConvert (pStubMsg == ^0x406cca7c, pFormat == ^0x431041c8): stub. fixme:ole:NdrConvert (pStubMsg == ^0x42551d14, pFormat == ^0x431041c8): stub. fixme:sync:SetNamedPipeHandleState 0x1e4 0x432080e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1e4 0x42bd60e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1e4 0x42ad30e0 (nil) (nil) fixme:sync:SetNamedPipeHandleState 0x1ec 0x42bd60e0 (nil) (nil) fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from 0x4003 -> 0x8) 42de13b4
Do I have some bogus registry entries, did I miss some dll registration or is this the expected behaviour?
Its one of the versions that do not work yet.
Have not explored why yet ;)
There is also one with MSI support that needs native MSI still.
Ciao, Marcus
"Mike" == Mike Hearn mh@codeweavers.com writes:
Mike> On Fri, 01 Apr 2005 12:03:46 +0200, Marcus Meissner wrote: >>> nearly all recent install shield installer fail for me, similar >>> like:
Mike> Which InstallShield version is this?
A "strings" on the installation file gives:
... InstallShield Setup Player 2K2 ... Created by MIDL version 6.00.0347 at Mon Dec 02 13:30:56 2002
Or how else to easy extract the version.
This was with quartusii_42_sp1_web_edition_single.exe from thw www.altera.com site.
Bye
On Fri, 01 Apr 2005 10:53:36 +0200, Uwe Bonnes wrote:
nearly all recent install shield installer fail for me, similar like:
I debugged this a bit with Maxime Bellenge, she sent me a full trace which revealed that this is a known problem. Here is a quick hacky patch to work around it:
Index: stubmanager.c =================================================================== RCS file: /home/wine/wine/dlls/ole32/stubmanager.c,v retrieving revision 1.19 diff -u -p -r1.19 stubmanager.c --- stubmanager.c 17 Mar 2005 10:26:20 -0000 1.19 +++ stubmanager.c 23 Mar 2005 21:51:08 -0000 @@ -477,7 +481,7 @@ BOOL stub_manager_notify_unmarshal(struc default: WARN("object OID %s already unmarshaled\n", wine_dbgstr_longlong(m->oid)); - ret = FALSE; + ret = TRUE; /* FIXME */ break; }
But I suspect you will hit further problems later.
"Mike" == Mike Hearn mh@codeweavers.com writes:
Mike> On Fri, 01 Apr 2005 10:53:36 +0200, Uwe Bonnes wrote: >> nearly all recent install shield installer fail for me, similar like:
Mike> I debugged this a bit with Maxime Bellenge, she sent me a full Mike> trace which revealed that this is a known problem. Here is a quick Mike> hacky patch to work around it:
Mike> Index: stubmanager.c Mike> =================================================================== Mike> RCS file: /home/wine/wine/dlls/ole32/stubmanager.c,v retrieving Mike> revision 1.19 diff -u -p -r1.19 stubmanager.c --- stubmanager.c 17 Mike> Mar 2005 10:26:20 -0000 1.19 +++ stubmanager.c 23 Mar 2005 Mike> 21:51:08 -0000 @@ -477,7 +481,7 @@ BOOL Mike> stub_manager_notify_unmarshal(struc default: WARN("object OID %s Mike> already unmarshaled\n", wine_dbgstr_longlong(m->oid)); - ret = Mike> FALSE; + ret = TRUE; /* FIXME */ break; }
The altera installation proceeds a little bit, but not in a usefull way.
Thanks
With my application (Route 66), it enables me to start copying files, however the progress bar never moves. However, the installer is doing something but seems to be stuck somewhere. Maybe some deadlocks.
Max
PS(specially for Mike): I'm a man :)
On Fri, 2005-04-01 at 18:02 +0200, Uwe Bonnes wrote:
"Mike" == Mike Hearn mh@codeweavers.com writes:
Mike> On Fri, 01 Apr 2005 10:53:36 +0200, Uwe Bonnes wrote: >> nearly all recent install shield installer fail for me, similar like: Mike> I debugged this a bit with Maxime Bellenge, she sent me a full Mike> trace which revealed that this is a known problem. Here is a quick Mike> hacky patch to work around it: Mike> Index: stubmanager.c Mike> =================================================================== Mike> RCS file: /home/wine/wine/dlls/ole32/stubmanager.c,v retrieving Mike> revision 1.19 diff -u -p -r1.19 stubmanager.c --- stubmanager.c 17 Mike> Mar 2005 10:26:20 -0000 1.19 +++ stubmanager.c 23 Mar 2005 Mike> 21:51:08 -0000 @@ -477,7 +481,7 @@ BOOL Mike> stub_manager_notify_unmarshal(struc default: WARN("object OID %s Mike> already unmarshaled\n", wine_dbgstr_longlong(m->oid)); - ret = Mike> FALSE; + ret = TRUE; /* FIXME */ break; }
The altera installation proceeds a little bit, but not in a usefull way.
Thanks