|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
Rekall 2.4.6Finally, a new release! See
http://www.rekallrevealed.org/packages/ This should fix the Ubuntu 7.10 build problems (actually a problem building against KDE 3.5.8). More news shortly .... -- Regards Mike _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6Hi mike great to here from you.
Thanks for the good news ill check it out right now. Rekall is a great program. Jules On Fri, 23 Nov 2007, Mike Richardson wrote: > Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 PATCH int-longStill has the cast problem
changing from int - long fixes it. Seems to be an issue with 64bit compilers. Have a look at this patch mike. Compiles fine otherwise. Jules On Fri, 23 Nov 2007, Julian wrote: > Hi mike great to here from you. > Thanks for the good news ill check it out right now. > Rekall is a great program. > Jules > > On Fri, 23 Nov 2007, Mike Richardson wrote: > > Finally, a new release! See > > > > http://www.rekallrevealed.org/packages/ > > > > This should fix the Ubuntu 7.10 build problems (actually a problem > > building against KDE 3.5.8). > > > > More news shortly .... > > _______________________________________________ > Rekall mailing list > Rekall@... > http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall [inttolong.patch] diff -Naur rekall-2.4.5.old/libs/el32/hash.cpp rekall-2.4.5/libs/el32/hash.cpp --- rekall-2.4.5.old/libs/el32/hash.cpp 2006-08-11 01:29:36.000000000 +1000 +++ rekall-2.4.5/libs/el32/hash.cpp 2007-07-02 13:13:53.000000000 +1000 @@ -145,7 +145,7 @@ /* otherwise use just the tag (pretty useless */ /* but so what, not a common case). */ if ((key.tag->flags & TF_SHARED) == 0) - hval = (int)key.val.shared ; + hval = (long)key.val.shared ; else hval = key.tag->tag ; break ; } diff -Naur rekall-2.4.5.old/libs/kbase/kb_configdlg.cpp rekall-2.4.5/libs/kbase/kb_configdlg.cpp --- rekall-2.4.5.old/libs/kbase/kb_configdlg.cpp 2006-08-11 01:29:37.000000000 +1000 +++ rekall-2.4.5/libs/kbase/kb_configdlg.cpp 2007-07-02 13:04:54.000000000 +1000 @@ -312,7 +312,7 @@ old.clear () ; QListViewItem *item = m_lvConfigs->firstChild() ; - uint ident = 0x000ffffff & (uint)(void *)item ; + uint ident = 0x000ffffff & (ulong)(void *)item ; while (item != 0) { diff -Naur rekall-2.4.5.old/libs/kbase/kb_overridedlg.cpp rekall-2.4.5/libs/kbase/kb_overridedlg.cpp --- rekall-2.4.5.old/libs/kbase/kb_overridedlg.cpp 2006-08-11 01:29:39.000000000 +1000 +++ rekall-2.4.5/libs/kbase/kb_overridedlg.cpp 2007-07-02 13:03:16.000000000 +1000 @@ -360,7 +360,7 @@ old.clear () ; QListViewItem *item = m_lvOverride->firstChild() ; - uint ident = 0x000ffffff & (uint)(void *)item ; + uint ident = 0x000ffffff & (ulong)(void *)item ; while (item != 0) { diff -Naur rekall-2.4.5.old/libs/kbase/kb_stack.cpp rekall-2.4.5/libs/kbase/kb_stack.cpp --- rekall-2.4.5.old/libs/kbase/kb_stack.cpp 2006-10-11 16:30:04.000000000 +1000 +++ rekall-2.4.5/libs/kbase/kb_stack.cpp 2007-07-02 13:12:31.000000000 +1000 @@ -456,7 +456,7 @@ this, SLOT (setCurrentPage(int)), 0, - (int)p + (long)p ) ; else raiser->insertItem @@ -464,7 +464,7 @@ this, SLOT (setCurrentPage(int)), 0, - (int)p + (long)p ) ; ) _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 PATCH int-longOn Friday 23 November 2007, Julian wrote:
> Still has the cast problem > changing from int - long fixes it. > Seems to be an issue with 64bit compilers. > Have a look at this patch mike. > Compiles fine otherwise. > Jules Thanx ... I've incorporated this into my codebase > > On Fri, 23 Nov 2007, Julian wrote: > > Hi mike great to here from you. > > Thanks for the good news ill check it out right now. > > Rekall is a great program. > > Jules > > > > On Fri, 23 Nov 2007, Mike Richardson wrote: > > > Finally, a new release! See > > > > > > http://www.rekallrevealed.org/packages/ > > > > > > This should fix the Ubuntu 7.10 build problems (actually a problem > > > building against KDE 3.5.8). > > > > > > More news shortly .... > > > > _______________________________________________ > > Rekall mailing list > > Rekall@... > > http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall -- Regards Mike http://www.rekallrevealed.org *THE* GPL/Open Source database front end for Linux and Windows. _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 gentoo EBUILDHeres an ebuild for 2.4.6
It builds as rekall as opposed to rekalldev previously. It includes 2 files the inttolong.patch and a settings file. On 64bit systems the inttolong.patch is required. Afaik doesnt affect 32bit binaries with patch applied. The settings file works with how ive used sed to work the makefiles etc into a more generic state for gentoo USE, could be improved. USE could probably include more options like "kjs" etc. Let me know how it goes. Jules On Fri, 23 Nov 2007, Mike Richardson wrote: > Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 gentoo EBUILDWooo Hooo! Thanks, Julian!
Is this going to be part of the official Gentoo portage system, or do I need to use this as a separate ebuild? On Friday 23 November 2007 6:28:08 am Julian wrote: > Heres an ebuild for 2.4.6 > It builds as rekall as opposed to rekalldev previously. > It includes 2 files the inttolong.patch and a settings file. > On 64bit systems the inttolong.patch is required. Afaik doesnt affect 32bit > binaries with patch applied. > The settings file works with how ive used sed to work the makefiles etc > into a more generic state for gentoo USE, could be improved. > USE could probably include more options like "kjs" etc. > Let me know how it goes. > Jules > > On Fri, 23 Nov 2007, Mike Richardson wrote: > > Finally, a new release! See > > > > http://www.rekallrevealed.org/packages/ > > > > This should fix the Ubuntu 7.10 build problems (actually a problem > > building against KDE 3.5.8). > > > > More news shortly .... -- Casey Bralla Chief Nerd in Residence The NerdWorld Organisation _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - KJS and QTHi
trying to get Rekall qt only compiled without KJS no matter what when kjs/kjs/SConscript gets executed its stuck with rkConfig.mode to determine what to do. But with enable-kjs=no and qt3 rkScan_KJS works with that but then the SConscript will fail as it passes the " not in [ 'mac' ] " statement. And ideas? Jules. _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - KJS and QTOn Friday 23 November 2007, Julian wrote:
> Hi > trying to get Rekall qt only compiled without KJS no matter what when > kjs/kjs/SConscript gets executed its stuck with rkConfig.mode to determine > what to do. But with enable-kjs=no and qt3 rkScan_KJS works with that but > then the SConscript will fail as it passes the " not in [ 'mac' ] " > statement. > And ideas? I'd guess editing kjs/kjs/SConscript and changing the if rkConfig.mode != 'kde' : line to if rkConfig.kjsBuild and rkConfig.mode != 'kde' : Does that fix it? > Jules. > _______________________________________________ > Rekall mailing list > Rekall@... > http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall -- Regards Mike http://www.rekallrevealed.org *THE* GPL/Open Source database front end for Linux and Windows. _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - KJS and QTYes I just did that, compiles fine now.
although i put it above rkConfig.mode != 'kde', but this is non-KDE KJS so i'll just adjust that. Thanks. Jules On Sat, 24 Nov 2007, Mike Richardson wrote: > On Friday 23 November 2007, Julian wrote: > > Hi > > trying to get Rekall qt only compiled without KJS no matter what when > > kjs/kjs/SConscript gets executed its stuck with rkConfig.mode to > > determine what to do. But with enable-kjs=no and qt3 rkScan_KJS works > > with that but then the SConscript will fail as it passes the " not in [ > > 'mac' ] " statement. > > And ideas? > > I'd guess editing > > kjs/kjs/SConscript > > and changing the > > if rkConfig.mode != 'kde' : > > line to > > if rkConfig.kjsBuild and rkConfig.mode != 'kde' : > > Does that fix it? > > > Jules. > > _______________________________________________ > > Rekall mailing list > > Rekall@... > > http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - no QT failing with wizardsSorry that was a bit premature.
That compile ended up failing, I was optimistic after it skipped pass the kjs stuff. starts here.. build/qt3/libs/wizard/kb_wizwizfile.os: In function `KBWizardCtrlWizFile::~KBWizardCtrlWizFile()': kb_wizwizfile.cpp:(.text+0x4aa): undefined reference to `KBWizardCtrl::~KBWizardCtrl() Jules _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - KJS and QT PATCHHeres that little patch
[SConscript-kjsBuild.patch] --- rekall-2.4.6-1/kjs/kjs/SConscript 2007-11-24 02:42:51.000000000 +1100 +++ rekall-2.4.6/kjs/kjs/SConscript 2007-11-24 04:05:44.000000000 +1100 @@ -4,9 +4,10 @@ import rkWalker import os -rkMoc.generateMocFiles ('kjs/kjs') -if rkConfig.mode != 'kde' : +if rkConfig.kjsBuild and rkConfig.mode != 'kde' : + + rkMoc.generateMocFiles ('kjs/kjs') rb = rkBuilder.rkBuilder ('kjs') _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - no QT failing with wizardsOn Sat, 24 Nov 2007, Julian wrote:
Ignore this error... Can't even compile with my normal settings. I have a running 2.4.6 right now, so i've messed up somewhere. Jules > Sorry that was a bit premature. > That compile ended up failing, I was optimistic after it skipped pass the > kjs stuff. > > starts here.. > build/qt3/libs/wizard/kb_wizwizfile.os: In function > `KBWizardCtrlWizFile::~KBWizardCtrlWizFile()': > kb_wizwizfile.cpp:(.text+0x4aa): undefined reference to > `KBWizardCtrl::~KBWizardCtrl() > > Jules _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 - no QT failing with wizards - libprefixHello,
I set "libprefix=" from my settings because i saw a default for "kbase" in rkScanner, guess i have to remove the whole line. Question i have is it preferable to have libprefix=kbase and appname=rekall? In some settings examples you have both libprefix and appname set to "rekall". Is this you can have multiple binaries installed alongside? Jules On Sat, 24 Nov 2007, Julian wrote: > On Sat, 24 Nov 2007, Julian wrote: > > Ignore this error... > Can't even compile with my normal settings. > I have a running 2.4.6 right now, so i've messed up somewhere. > Jules > > > Sorry that was a bit premature. > > That compile ended up failing, I was optimistic after it skipped pass the > > kjs stuff. > > > > starts here.. > > build/qt3/libs/wizard/kb_wizwizfile.os: In function > > `KBWizardCtrlWizFile::~KBWizardCtrlWizFile()': > > kb_wizwizfile.cpp:(.text+0x4aa): undefined reference to > > `KBWizardCtrl::~KBWizardCtrl() > > > > Jules _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6Hi!
Great, this compiles without error on a feisty machine! Thanks!! However.... when trying on a Gutsy (7.10), make exists with the following last lines: /kde/libs/el32 -Ilibs/el32 -I. -I/usr/include/qt3 -I/usr/include/kde libs/el32/hash.cpp libs/el32/hash.cpp: In member function "VALUE* HASH::entry(const VALUE&, int)": libs/el32/hash.cpp:148: fel: konvertering från "ELShared*" till "int" förlorar precision scons: *** [build/kde/libs/el32/hash.os] Error 1 make: *** [kde] Fel 2 Where did I go wrong? Regards, Magnus Larsson Mike Richardson skrev: > Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... > _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 gentoo EBUILDYes
https://bugs.gentoo.org/show_bug.cgi?id=200151 Theres a new ebuild on the way. see last comment. On Fri, 23 Nov 2007, Casey Bralla wrote: > Wooo Hooo! Thanks, Julian! > > > Is this going to be part of the official Gentoo portage system, or do I > need to use this as a separate ebuild? > > On Friday 23 November 2007 6:28:08 am Julian wrote: > > Heres an ebuild for 2.4.6 > > It builds as rekall as opposed to rekalldev previously. > > It includes 2 files the inttolong.patch and a settings file. > > On 64bit systems the inttolong.patch is required. Afaik doesnt affect > > 32bit binaries with patch applied. > > The settings file works with how ive used sed to work the makefiles etc > > into a more generic state for gentoo USE, could be improved. > > USE could probably include more options like "kjs" etc. > > Let me know how it goes. > > Jules > > > > On Fri, 23 Nov 2007, Mike Richardson wrote: > > > Finally, a new release! See > > > > > > http://www.rekallrevealed.org/packages/ > > > > > > This should fix the Ubuntu 7.10 build problems (actually a problem > > > building against KDE 3.5.8). > > > > > > More news shortly .... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 PATCH UPDATE int2long.patchSome more int2long changes (showed up after compiling against python2.5)
On Fri, 23 Nov 2007, Mike Richardson wrote: > Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... [24int2long.patch] diff -Naur rekall-2.4.6/libs/el32/hash.cpp rekall-2.4.6-1/libs/el32/hash.cpp --- rekall-2.4.6/libs/el32/hash.cpp 2006-08-11 01:29:36.000000000 +1000 +++ rekall-2.4.6-1/libs/el32/hash.cpp 2007-11-25 18:40:19.000000000 +1100 @@ -145,7 +145,7 @@ /* otherwise use just the tag (pretty useless */ /* but so what, not a common case). */ if ((key.tag->flags & TF_SHARED) == 0) - hval = (int)key.val.shared ; + hval = (long)key.val.shared ; else hval = key.tag->tag ; break ; } diff -Naur rekall-2.4.6/libs/kbase/kb_configdlg.cpp rekall-2.4.6-1/libs/kbase/kb_configdlg.cpp --- rekall-2.4.6/libs/kbase/kb_configdlg.cpp 2006-08-11 01:29:37.000000000 +1000 +++ rekall-2.4.6-1/libs/kbase/kb_configdlg.cpp 2007-11-25 18:40:19.000000000 +1100 @@ -312,7 +312,7 @@ old.clear () ; QListViewItem *item = m_lvConfigs->firstChild() ; - uint ident = 0x000ffffff & (uint)(void *)item ; + uint ident = 0x000ffffff & (ulong)(void *)item ; while (item != 0) { diff -Naur rekall-2.4.6/libs/kbase/kb_overridedlg.cpp rekall-2.4.6-1/libs/kbase/kb_overridedlg.cpp --- rekall-2.4.6/libs/kbase/kb_overridedlg.cpp 2006-08-11 01:29:39.000000000 +1000 +++ rekall-2.4.6-1/libs/kbase/kb_overridedlg.cpp 2007-11-25 18:40:19.000000000 +1100 @@ -360,7 +360,7 @@ old.clear () ; QListViewItem *item = m_lvOverride->firstChild() ; - uint ident = 0x000ffffff & (uint)(void *)item ; + uint ident = 0x000ffffff & (ulong)(void *)item ; while (item != 0) { diff -Naur rekall-2.4.6/libs/kbase/kb_stack.cpp rekall-2.4.6-1/libs/kbase/kb_stack.cpp --- rekall-2.4.6/libs/kbase/kb_stack.cpp 2006-10-11 16:30:04.000000000 +1000 +++ rekall-2.4.6-1/libs/kbase/kb_stack.cpp 2007-11-25 18:40:19.000000000 +1100 @@ -456,7 +456,7 @@ this, SLOT (setCurrentPage(int)), 0, - (int)p + (long)p ) ; else raiser->insertItem @@ -464,7 +464,7 @@ this, SLOT (setCurrentPage(int)), 0, - (int)p + (long)p ) ; ) diff -Naur rekall-2.4.6/script/python/kb_basic.cpp rekall-2.4.6-1/script/python/kb_basic.cpp --- rekall-2.4.6/script/python/kb_basic.cpp 2007-02-14 07:35:41.000000000 +1100 +++ rekall-2.4.6-1/script/python/kb_basic.cpp 2007-11-25 18:41:09.000000000 +1100 @@ -401,7 +401,7 @@ QStringList pairs ; PyObject *key ; PyObject *value ; - int pos = 0 ; + long pos = 0 ; //xxx use pickle or marshal to create the data representation instead //xxx of a simple string representation? diff -Naur rekall-2.4.6/script/python/kb_pycontainer.cpp rekall-2.4.6-1/script/python/kb_pycontainer.cpp --- rekall-2.4.6/script/python/kb_pycontainer.cpp 2006-10-11 16:30:04.000000000 +1000 +++ rekall-2.4.6-1/script/python/kb_pycontainer.cpp 2007-11-25 18:58:06.000000000 +1100 @@ -60,7 +60,7 @@ } char *buffer ; - int len ; + long len ; PyString_AsStringAndSize (pyImage, &buffer, &len) ; QByteArray ba ; diff -Naur rekall-2.4.6/script/python/kb_pysupport.cpp rekall-2.4.6-1/script/python/kb_pysupport.cpp --- rekall-2.4.6/script/python/kb_pysupport.cpp 2006-08-11 01:29:42.000000000 +1000 +++ rekall-2.4.6-1/script/python/kb_pysupport.cpp 2007-11-25 19:57:48.000000000 +1100 @@ -37,7 +37,7 @@ { PyObject *key ; PyObject *value ; - int pos = 0 ; + long pos = 0 ; kbDict.setAutoDelete (true) ; diff -Naur rekall-2.4.6/script/python/tkc_pydebugbase.cpp rekall-2.4.6-1/script/python/tkc_pydebugbase.cpp --- rekall-2.4.6/script/python/tkc_pydebugbase.cpp 2006-08-11 01:29:42.000000000 +1000 +++ rekall-2.4.6-1/script/python/tkc_pydebugbase.cpp 2007-11-25 19:17:07.000000000 +1100 @@ -1082,7 +1082,7 @@ { PyObject *pkey ; PyObject *pvalue ; - int dictPos = 0 ; + long dictPos = 0 ; while (PyDict_Next (pyDict, &dictPos, &pkey, &pvalue)) { @@ -1135,7 +1135,7 @@ PyObject *pyKey ; PyObject *pyValue ; QString name ; - int dictPos = 0 ; + long dictPos = 0 ; /* See if we have been here before, in which case there is no */ /* point in going there again. This also prevents infinite */ _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6On Fri, 23 Nov 2007, Mike Richardson wrote:
> Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: Rekall 2.4.6 PATCH rkScan_Python.pyRemoved a few lines neccessay for it to link against the right version of
python where multiple versions are install. You might not want this, but its to get it compiled for gentoo Jules On Fri, 23 Nov 2007, Mike Richardson wrote: > Finally, a new release! See > > http://www.rekallrevealed.org/packages/ > > This should fix the Ubuntu 7.10 build problems (actually a problem building > against KDE 3.5.8). > > More news shortly .... [24scanpythonlib.patch] --- rekall-2.4.6/scons/rkScan_Python.py 2006-11-08 07:59:35.000000000 +1100 +++ rekall-2.4.6-1/scons/rkScan_Python.py 2007-11-25 20:17:29.000000000 +1100 @@ -33,7 +33,7 @@ ( 'with-python-includes', [ - '/usr/local/include/python2.5[B', + '/usr/local/include/python2.5', '/usr/local/include/python2.4', '/usr/local/include/python2.3', '/usr/local/include/python2.2', @@ -54,8 +54,6 @@ ( 'with-python-libraries', [ - '/usr/local/lib', - '/usr/lib', '/usr/local/lib/python2.5/config', '/usr/local/lib/python2.4/config', '/usr/local/lib/python2.3/config', _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Rekall 2.4.6 gentoo EBUILD UPDATE |