Dear all,
I just downloaded Abiword 2.0.3 ( abiword-setup-2-0-3.exe) as I wish to try to install it on Reactos in real hardware. I have not seen any pending issue in Bugzilla so sounds like it should work. But before to start , I 'd like to have feed back about possible problem/workaround ...
Thanks Gerard
On 2/29/04 at 5:42 PM Gge wrote:
Dear all,
I just downloaded Abiword 2.0.3 ( abiword-setup-2-0-3.exe) as I wish to try to install it on Reactos in real hardware. I have not seen any pending issue in Bugzilla so sounds like it should work. But before to start , I 'd like to have feed back about possible problem/workaround ...
Thanks Gerard _______________________________________________
I have tried to install abiword from cd using ros 0.2.pr1 . The installer starts and comes to grief at the licence window (error message attached).
I have installed win32pad with it's own installer in ros from the reactos directory, and it installs, it puts an icon on the desktop and there is an entry in the ' start ' ' program ' slot.
But the programme does not run, but it will not run from the windows directory also.
I don' t know if you will have success with the full release of ros 0.2.1.
Regards, jh
jh wrote:
On 2/29/04 at 5:42 PM Gge wrote:
Dear all,
I just downloaded Abiword 2.0.3 ( abiword-setup-2-0-3.exe) as I wish to try to install it on Reactos in real hardware. I have not seen any pending issue in Bugzilla so sounds like it should work. But before to start , I 'd like to have feed back about possible problem/workaround ...
I have tried to install abiword from cd using ros 0.2.pr1 . The installer starts and comes to grief at the licence window (error message attached).
I have installed win32pad with it's own installer in ros from the reactos directory, and it installs, it puts an icon on the desktop and there is an entry in the ' start ' ' program ' slot.
But the programme does not run, but it will not run from the windows directory also.
I don' t know if you will have success with the full release of ros 0.2.1.
Regards, jh
These are the error messages:
Bug detected (code 1e param 0 0 0 0) KMODE_EXCEPTION_NOT_HANDLED
Page Fault Exception: 14(0) Processor: 0 CS:EIP 8:cde8a020 <win32k: 34020> cr2 3 cr3 2c62000 Proc: c1572270 Pid: 9 <setup_ab> Thrd: c1574e98 Tid: 31 DS 10 ES 10 FS 30 GS 10 EAX: 00000000 EBX: 00000010 ECX: cdeb5460 EDX: 00000000 EBP: ce199f04 ESI: 005294ec EDI: ce199f84 EFLAGS: 00010206 kESP ce199e70 kernel stack base ce197000 ESP ce199e70 Frames: <win32k: 34222> <win32k: 3385c> <ntoskrnl.exe: 32f7> Page fault at high IRQL was 2 ExceptionRecord->ExceptionAddress = 0xc0001cf5 KeBugCheckWithTf at ke/catch.c:168 Bug detected (code 1e param 0 0 0 0) KMODE_EXCEPTION_NOT_HANDLED
Recursive bug check halting now
Thanks Jh,
I am using Ros 0.2.1 from CVS dated 29022004 (fresh build from today) When I run "abiword-setup-2-0-3.exe " from CMD window , a message box is diplayed "Verifying installer 9%" After 1 hour , still this same messagebox "9%" .
Gerard
..
I am using Ros 0.2.1 from CVS dated 29022004 (fresh build from today) When I run "abiword-setup-2-0-3.exe " from CMD window , a message box is diplayed "Verifying installer 9%" After 1 hour , still this same messagebox "9%" .
Gerard
Then AbiWord never even started. Do other NSIS v2 based installers work? The AbiWord installer uses several NSIS plugins, such as to check internet connection, etc. and has been reported to fail on Windows 95 without IE.
If you want to test AbiWord, try running just the executable, http://abiword.pchasm.org/builds/nightly/win32/AbiWord.exe or for latest Stable build http://abiword.pchasm.org/builds/nightly/win32/ABI-2-0-0-STABLE/VC6SP5/AbiWo...
If it makes it easier and you want the extra files (help, etc) I can probably add a zip install method for AbiWord.
As for the timer issue, for testing purposes, a simple fix of ignoring the timer callback if abi's timer object is disabled may suffice for a more graceful failure. I will see about adding a zip build of AbiWord with a timer workaround tommorrow to http://abiword.pchasm.org/builds/periodic/ if anyone with ROS installed wants to try it.
(I generally provide the Win32 builds of AbiWord)
Jeremy Davis jeremyd@computer.org
Kenneth J. Davis wrote:
Then AbiWord never even started. Do other NSIS v2 based installers work? The AbiWord installer uses several NSIS plugins, such as to check internet connection, etc. and has been reported to fail on Windows 95 without IE.
Yes, other NSIS v2 based installers work and even the AbiWord one worked before. I'm not sure if it works now or not.
If you want to test AbiWord, try running just the executable, http://abiword.pchasm.org/builds/nightly/win32/AbiWord.exe or for latest Stable build http://abiword.pchasm.org/builds/nightly/win32/ABI-2-0-0-STABLE/VC6SP5/AbiWo...
If it makes it easier and you want the extra files (help, etc) I can probably add a zip install method for AbiWord.
As for the timer issue, for testing purposes, a simple fix of ignoring the timer callback if abi's timer object is disabled may suffice for a more graceful failure. I will see about adding a zip build of AbiWord with a timer workaround tommorrow to http://abiword.pchasm.org/builds/periodic/ if anyone with ROS installed wants to try it.
Attached is a patch for my modified AbiWord version that has this check and one more HACK on other place. With this patch I was able to load AbiWord on ReactOS...
(I generally provide the Win32 builds of AbiWord)
Jeremy Davis jeremyd@computer.org
Thanks much for interest and help.
- Filip
--- abi/src/af/ev/win/ev_Win32Toolbar.cpp Fri Dec 12 14:19:27 2003 +++ abi/src/af/ev/win/ev_Win32Toolbar.cpp Wed Feb 11 21:37:43 2004 @@ -280,10 +280,12 @@ if(dis->itemState & ODS_COMBOBOXEDIT) { +#if 0 HFONT hUIFont = (HFONT) GetStockObject(DEFAULT_GUI_FONT); hfontSave = (HFONT) SelectObject (dis->hDC, hUIFont); ExtTextOut(dis->hDC, dis->rcItem.left, dis->rcItem.top, ETO_OPAQUE | ETO_CLIPPED, 0, sz, lstrlen(sz), 0); SelectObject (dis->hDC, hfontSave); +#endif } else { --- abi/src/af/util/win/ut_Win32Timer.cpp Wed Apr 10 00:25:18 2002 +++ abi/src/af/util/win/ut_Win32Timer.cpp Thu Feb 12 12:04:28 2004 @@ -61,6 +63,7 @@ UT_Timer* pMyTimer = UT_Win32Timer::findWin32Timer(hwnd, idEvent); UT_ASSERT(pMyTimer);
+ if (pMyTimer) pMyTimer->fire(); }
Hi all!
I've sent an AbiWord status report some time ago and still some problems aren't solved. The current showstopper is that KillTimer in win32k doesn't really kill the timer that AbiWord registers and AbiWord isn't able to handle this situation (obviously).
Regards, Filip.
Hi all!
I've sent an AbiWord status report some time ago and still some problems aren't solved. The current showstopper is that KillTimer in win32k doesn't really kill the timer that AbiWord registers and AbiWord isn't able to handle this situation (obviously).
Precicely what happends? Even if the timer is killed a timer message is sent to the app? I'm giving the timer impl. a good cleanup right now, so i could look into this is you gave some details.
-Gunnar
Regards, Filip. _______________________________________________ ros-general mailing list ros-general@reactos.com http://reactos.com/mailman/listinfo/ros-general
Hi all!
I've sent an AbiWord status report some time ago and still some problems aren't solved. The current showstopper is that KillTimer in win32k doesn't really kill the timer that AbiWord registers and AbiWord isn't able to handle this situation (obviously).
Precicely what happends? Even if the timer is killed a timer message is sent to the app? I'm giving the timer impl. a good cleanup right now, so i could look into this is you gave some details.
-Gunnar
Installing abiword-setup-2.0.3.exe works for me (i tested only with the required components). It crashes during load thou, probably due to a missing mscvrt export __CxxLongjmpUnwind, imported by libAbi_IEG_Win32Native.dll
-Gunnar
Regards, Filip. _______________________________________________ ros-general mailing list ros-general@reactos.com http://reactos.com/mailman/listinfo/ros-general
ros-general mailing list ros-general@reactos.com http://reactos.com/mailman/listinfo/ros-general
Gunnar André Dalsnes wrote:
Installing abiword-setup-2.0.3.exe works for me (i tested only with the required components). It crashes during load thou, probably due to a missing mscvrt export __CxxLongjmpUnwind, imported by libAbi_IEG_Win32Native.dll
-Gunnar
You can try to use msvcrt.dll from Windows (available on the NET also), but libAbi_IEG_Win32Native.dll is a plugin and failure of loading it shouldn't cause any problems.
- Filip
Gunnar André Dalsnes wrote:
Hi all!
I've sent an AbiWord status report some time ago and still some problems aren't solved. The current showstopper is that KillTimer in win32k doesn't really kill the timer that AbiWord registers and AbiWord isn't able to handle this situation (obviously).
Precicely what happends? Even if the timer is killed a timer message is sent to the app? I'm giving the timer impl. a good cleanup right now, so i could look into this is you gave some details.
-Gunnar
I haven't looked at the problem in detail, but what I noticed is that even after calling KillTimer, the messages were sent to the application.
- Filip