|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
2.4.5 Build problem with kb_xbase.cppHello
I've gotten all of 2.4.5 built on SCO OSR6 except for kb_xbase.cpp. I had no problem compiling 2.4.0 in this area. I get the following errors: /bin/CC -g -KPIC -Kudk -Kpthread -Kalloca -DPIC -DQT_THREAD_SUPPORT -D_REENTRANT -DSVR5 -DQ_OS_LINUX -KPIC -D__KB_RUNTIME=0 -D__KB_DPRINTF=0 -D__KB_BUILD_BUILD=\"\" -D__KB_AUTOMOC=1 -DROOTDIR="\"/usr/local"\" -D__KB_PLAT_LINUX=1 -D__KB_BUILD_RELEASE=\"2.4.5\" -D__KB_KDE=0 -D__KB_INITNAME=init_librekallqt_driver_xbase "-D__KB_BUILD_TIME=\"05:33 19-08-2007 GMT\"" -D__KB_APPNAME=\"rekallqt\" -D__KB_TKC=1 -g -Ibuild/qt3/db/xbase -Idb/xbase -Isupport -Isupport/xbase -Isupport/xbsql -Ilibs/common -Iports/qt3 -Iports/rkdcop -I. -I/usr/lib/qt3/include -c -o build/qt3/db/xbase/kb_xbase.os db/xbase/kb_xbase.cpp "/usr/lib/qt3/include/qlistbox.h", line 139: error: too few arguments in macro invocation int index( const QListBoxItem * ) const; ^ "/usr/lib/qt3/include/qlistbox.h", line 139: error: expected a type specifier int index( const QListBoxItem * ) const; ^ "/usr/lib/qt3/include/qlistbox.h", line 275: error: too few arguments in macro invocation int findItem( int yPos ) const { return index(itemAt(QPoint(0,yPos)) ); } ^ "/usr/lib/qt3/include/qlistbox.h", line 275: error: expected an expression int findItem( int yPos ) const { return index(itemAt(QPoint(0,yPos)) ); } ^ scons: *** [build/qt3/db/xbase/kb_xbase.os] Error 1 gmake: *** [qt3] Error 2 What line in kb_xbase.cpp is causing this? Any ideas how to fix? Thank you for any available help Paul McNary pmcnary@... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppLook at the scons user guide in the troubleshooting section,
there are quite a few options that you can pass that will give more information on the build process. http://www.scons.org/doc/0.97/HTML/scons-user/book1.html Bill M ----- Original Message ----- From: "Paul McNary" <pmcnary@...> To: <rekall@...> Sent: Sunday, August 19, 2007 3:00 PM Subject: [Rekall] 2.4.5 Build problem with kb_xbase.cpp > Hello > > I've gotten all of 2.4.5 built on SCO OSR6 except for > kb_xbase.cpp. > > I had no problem compiling 2.4.0 in this area. > > I get the following errors: > /bin/CC -g -KPIC -Kudk -Kpthread -Kalloca -DPIC -DQT_THREAD_SUPPORT -D _REENTRANT -DSVR5 -DQ_OS_LINUX -KPIC -D__KB_RUNTIME=0 -D__KB_DPRINTF=0 -D__KB_BUILD_BUILD=\"\" -D__KB_AUTOMOC=1 -DROOTDIR="\"/usr/local"\" - D__KB_PLAT_LINUX=1 -D__KB_BUILD_RELEASE=\"2.4.5\" -D__KB_KDE=0 -D__KB_ INITNAME=init_librekallqt_driver_xbase "-D__KB_BUILD_TIME=\"05:33 > 19-08-2007 > GMT\"" -D__KB_APPNAME=\"rekallqt\" -D__KB_TKC=1 -g -Ibuild/qt3/db/xbas e -Idb/xbase -Isupport -Isupport/xbase -Isupport/xbsql -Ilibs/common - Iports/qt3 -Iports/rkdcop -I. -I/usr/lib/qt3/include -c -o > build/qt3/db/xbase/kb_xbase.os db/xbase/kb_xbase.cpp > "/usr/lib/qt3/include/qlistbox.h", line 139: error: too few arguments in macro > invocation > int index( const QListBoxItem * ) const; > ^ > > "/usr/lib/qt3/include/qlistbox.h", line 139: error: expected a type specifier > int index( const QListBoxItem * ) const; > ^ > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: too few arguments in macro > invocation > int findItem( int yPos ) const { return > index(itemAt(QPoint(0,yPos)) ); } > ^ > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: expected an expression > int findItem( int yPos ) const { return > index(itemAt(QPoint(0,yPos)) ); } > ^ > > scons: *** [build/qt3/db/xbase/kb_xbase.os] Error 1 > gmake: *** [qt3] Error 2 > > What line in kb_xbase.cpp is causing this? > Any ideas how to fix? > > Thank you for any available help > > Paul McNary > pmcnary@... > _______________________________________________ > 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: 2.4.5 Build problem with kb_xbase.cppThanks Bill
It turned out to be a strings.h include file conflict on SCO. strings.h defined a macro named index and so does qlistbox.h Resolved that and now I have everything compiled for the Qt 2.4.5 version for SCO OSR6. I compiled the KDE version but it has run issues that I will work out over time. The Qt version is working great. Thanks Paul pmcnary@... On Monday 20 August 2007 17:05, bill murphy wrote: > Look at the scons user guide in the troubleshooting section, > there are quite a few options that you can pass that will give > more information on the build process. > > http://www.scons.org/doc/0.97/HTML/scons-user/book1.html > > Bill M > > ----- Original Message ----- > From: "Paul McNary" <pmcnary@...> > To: <rekall@...> > Sent: Sunday, August 19, 2007 3:00 PM > Subject: [Rekall] 2.4.5 Build problem with kb_xbase.cpp > > > Hello > > > > I've gotten all of 2.4.5 built on SCO OSR6 except for > > kb_xbase.cpp. > > > > I had no problem compiling 2.4.0 in this area. > > > > I get the following errors: > > /bin/CC -g -KPIC -Kudk -Kpthread -Kalloca -DPIC -DQT_THREAD_SUPPORT -D > _REENTRANT -DSVR5 -DQ_OS_LINUX -KPIC -D__KB_RUNTIME=0 -D__KB_DPRINTF=0 > -D__KB_BUILD_BUILD=\"\" -D__KB_AUTOMOC=1 -DROOTDIR="\"/usr/local"\" - > D__KB_PLAT_LINUX=1 -D__KB_BUILD_RELEASE=\"2.4.5\" -D__KB_KDE=0 -D__KB_ > INITNAME=init_librekallqt_driver_xbase "-D__KB_BUILD_TIME=\"05:33 > > > 19-08-2007 > > GMT\"" -D__KB_APPNAME=\"rekallqt\" -D__KB_TKC=1 -g -Ibuild/qt3/db/xbas > e -Idb/xbase -Isupport -Isupport/xbase -Isupport/xbsql -Ilibs/common - > Iports/qt3 -Iports/rkdcop -I. -I/usr/lib/qt3/include -c -o > > > build/qt3/db/xbase/kb_xbase.os db/xbase/kb_xbase.cpp > > "/usr/lib/qt3/include/qlistbox.h", line 139: error: too few > > arguments in macro > > > invocation > > int index( const QListBoxItem * ) const; > > ^ > > > > "/usr/lib/qt3/include/qlistbox.h", line 139: error: expected a type > > specifier > > > int index( const QListBoxItem * ) const; > > ^ > > > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: too few > > arguments in macro > > > invocation > > int findItem( int yPos ) const { return > > index(itemAt(QPoint(0,yPos)) ); } > > ^ > > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: expected an > > expression > > > int findItem( int yPos ) const { return > > index(itemAt(QPoint(0,yPos)) ); } > > ^ > > > > scons: *** [build/qt3/db/xbase/kb_xbase.os] Error 1 > > gmake: *** [qt3] Error 2 > > > > What line in kb_xbase.cpp is causing this? > > Any ideas how to fix? > > > > Thank you for any available help > > > > Paul McNary > > pmcnary@... > > _______________________________________________ > > 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 Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppOn Monday 20 August 2007, Paul McNary wrote:
> Thanks Bill > > It turned out to be a strings.h include file conflict on SCO. > strings.h defined a macro named index and so does qlistbox.h > Resolved that and now I have everything compiled for > the Qt 2.4.5 version for SCO OSR6. I compiled the KDE > version but it has run issues that I will work out over time. > The Qt version is working great. > > Thanks > Paul > pmcnary@... > > On Monday 20 August 2007 17:05, bill murphy wrote: > > Look at the scons user guide in the troubleshooting section, > > there are quite a few options that you can pass that will give > > more information on the build process. > > > > http://www.scons.org/doc/0.97/HTML/scons-user/book1.html > > > > Bill M > > > > ----- Original Message ----- > > From: "Paul McNary" <pmcnary@...> > > To: <rekall@...> > > Sent: Sunday, August 19, 2007 3:00 PM > > Subject: [Rekall] 2.4.5 Build problem with kb_xbase.cpp > > > > > Hello > > > > > > I've gotten all of 2.4.5 built on SCO OSR6 except for > > > kb_xbase.cpp. > > > > > > I had no problem compiling 2.4.0 in this area. > > > > > > I get the following errors: > > > > /bin/CC -g -KPIC -Kudk -Kpthread -Kalloca -DPIC -DQT_THREAD_SUPPORT -D > > _REENTRANT -DSVR5 -DQ_OS_LINUX -KPIC -D__KB_RUNTIME=0 -D__KB_DPRINTF=0 > > -D__KB_BUILD_BUILD=\"\" -D__KB_AUTOMOC=1 -DROOTDIR="\"/usr/local"\" - > > D__KB_PLAT_LINUX=1 -D__KB_BUILD_RELEASE=\"2.4.5\" -D__KB_KDE=0 -D__KB_ > > INITNAME=init_librekallqt_driver_xbase "-D__KB_BUILD_TIME=\"05:33 > > > > > 19-08-2007 > > > > GMT\"" -D__KB_APPNAME=\"rekallqt\" -D__KB_TKC=1 -g -Ibuild/qt3/db/xbas > > e -Idb/xbase -Isupport -Isupport/xbase -Isupport/xbsql -Ilibs/common - > > Iports/qt3 -Iports/rkdcop -I. -I/usr/lib/qt3/include -c -o > > > > > build/qt3/db/xbase/kb_xbase.os db/xbase/kb_xbase.cpp > > > "/usr/lib/qt3/include/qlistbox.h", line 139: error: too few > > > > arguments in macro > > > > > invocation > > > int index( const QListBoxItem * ) const; > > > ^ > > > > > > "/usr/lib/qt3/include/qlistbox.h", line 139: error: expected a type > > > > specifier > > > > > int index( const QListBoxItem * ) const; > > > ^ > > > > > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: too few > > > > arguments in macro > > > > > invocation > > > int findItem( int yPos ) const { return > > > index(itemAt(QPoint(0,yPos)) ); } > > > > ^ > > > > > "/usr/lib/qt3/include/qlistbox.h", line 275: error: expected an > > > > expression > > > > > int findItem( int yPos ) const { return > > > index(itemAt(QPoint(0,yPos)) ); } > > > ^ > > > > > > scons: *** [build/qt3/db/xbase/kb_xbase.os] Error 1 > > > gmake: *** [qt3] Error 2 > > > > > > What line in kb_xbase.cpp is causing this? > > > Any ideas how to fix? > > > > > > Thank you for any available help > > > > > > Paul McNary > > > pmcnary@... > > > _______________________________________________ > > > 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 > > _______________________________________________ > Rekall mailing list > Rekall@... > http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall Paul: Where is that file? Maybe the same issue with segfault -- Thomas _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppHello Thomas
Linux does not use strings.h. Linux only uses string.h. SCO has it broke into 2 pieces string.h strings.h. That wouldn't cause a segfault. Segfault is stepping on memory that doesn't belong to you. Invalid pointer, etc. Right now the splittering of Linux is an issue for software developers. All Linux's are not the same and behave quite differently. Each Linux is like maintanining software for a different OS entirely. Tom Podnar at Microlite can give you some insight on this and why Linux is not easy to support. I've had no experience with Mandriva. I've stayed with SCO because there is NO, one linux target to hit. I've played a little with Suse 9 and 10 but not to build apps on. The USLC compiler that SCO uses is a very efficient compiler. We have to deal with a few "GCC" isms we can't handle but most things compile fairly easily and run faster than gcc compiled code. We've had several issues over the past 2 years with the Qt build that SCO had. We worked out most of the issues with that now. Can you run Qt "designer", especially the wizards without any problems? I would suspect the Qt or KDE build more than I would the Rekall code on Segfaults. What version of Qt are you running and does that match what Rekall was built against? The KDE build doesn't work well at this time on SCO. A new KDE build is due to be released in October. Give me some more details and I'll try to help. After 30 years of coding COBOL, I'm quickly learning C and C++ in depth. Slow process. Paul pmcnary@... On Monday 20 August 2007 17:37, Thomas Spuhler wrote: > Paul: > Where is that file? Maybe the same issue with segfault _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
|
|
|
Re: 2.4.5 Build problem with kb_xbase.cppPaul McNary wrote:
> Thomas > > Are you using the qt build or the KDE build? > > Paul > pmcnary@... Hmm... how do I know? These are some of the build lines in the spec file %build export KDEDIR=%{_prefix} PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed "s/',/', '/g"` sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py echo "prefix=%{_prefix}" >> scons/settings.qt3 echo "with-mysql-libraries=%{_libdir}/mysql" >> scons/settings.qt3 echo "with-pgsql-libraries=%{_libdir}" >> scons/settings.qt3 echo "with-python-libraries=%{_libdir}" >> scons/settings.qt3 echo "with-qt-includes=%{_libdir}/qt-3.3/include" >> scons/settings.qt3 echo "with-qt-libraries=%{_libdir}/qt-3.3/lib" >> scons/settings.qt3 cp scons/settings.qt3 settings cp scons/Makefile . here are some of the ln lines, seems to be a qt build? ln -s %{_datadir}/apps/rekallqt/icons/hicolor/32x32/apps/rekall.png pixmaps/rekall.png cp apps/rekallqt/icons/hicolor/32x32/apps/rekall.png pixmaps/rekallrt.png cd $RPM_BUILD_ROOT%{_bindir} ln -s %{_bindir}/rekallqt rekall ln -s %{_bindir}/rekallqtManual rekallManual ln -s %{_bindir}/rekallqtrt rekallrt Thomas _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppHello Thomas
I'm seeing a problem with 2.4.5 that might be related to yours. If you open a command window and manually run rekallqt do you get an error message. You will not see the error message if you run it from a menu item. Try it manually and report the error that it fails with, maybe it is provising some message before the seg fault. Paul pmcnary@... On Tuesday 21 August 2007 00:10, Thomas Spuhler wrote: > Paul McNary wrote: > > Thomas > > > > Are you using the qt build or the KDE build? > > > > Paul > > pmcnary@... > > Hmm... how do I know? > These are some of the build lines in the spec file > %build > export KDEDIR=%{_prefix} > PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed > "s/',/', '/g"` > sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py > echo "prefix=%{_prefix}" >> scons/settings.qt3 > echo "with-mysql-libraries=%{_libdir}/mysql" >> scons/settings.qt3 > echo "with-pgsql-libraries=%{_libdir}" >> scons/settings.qt3 > echo "with-python-libraries=%{_libdir}" >> scons/settings.qt3 > echo "with-qt-includes=%{_libdir}/qt-3.3/include" >> scons/settings.qt3 > echo "with-qt-libraries=%{_libdir}/qt-3.3/lib" >> scons/settings.qt3 > cp scons/settings.qt3 settings > cp scons/Makefile . > > > here are some of the ln lines, seems to be a qt build? > > ln -s %{_datadir}/apps/rekallqt/icons/hicolor/32x32/apps/rekall.png > pixmaps/rekall.png > cp apps/rekallqt/icons/hicolor/32x32/apps/rekall.png pixmaps/rekallrt.png > cd $RPM_BUILD_ROOT%{_bindir} > ln -s %{_bindir}/rekallqt rekall > ln -s %{_bindir}/rekallqtManual rekallManual > ln -s %{_bindir}/rekallqtrt rekallrt > > Thomas Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppOn Wednesday 22 August 2007, Paul McNary wrote:
> Hello Thomas > > I'm seeing a problem with 2.4.5 that might be related to yours. > If you open a command window and manually run rekallqt > do you get an error message. You will not see the error > message if you run it from a menu item. > > Try it manually and report the error that it fails with, > maybe it is provising some message before the seg fault. > > Paul > pmcnary@... > > On Tuesday 21 August 2007 00:10, Thomas Spuhler wrote: > > Paul McNary wrote: > > > Thomas > > > > > > Are you using the qt build or the KDE build? > > > > > > Paul > > > pmcnary@... > > > > Hmm... how do I know? > > These are some of the build lines in the spec file > > %build > > export KDEDIR=%{_prefix} > > PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed > > "s/',/', '/g"` > > sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py > > echo "prefix=%{_prefix}" >> scons/settings.qt3 > > echo "with-mysql-libraries=%{_libdir}/mysql" >> scons/settings.qt3 > > echo "with-pgsql-libraries=%{_libdir}" >> scons/settings.qt3 > > echo "with-python-libraries=%{_libdir}" >> scons/settings.qt3 > > echo "with-qt-includes=%{_libdir}/qt-3.3/include" >> scons/settings.qt3 > > echo "with-qt-libraries=%{_libdir}/qt-3.3/lib" >> scons/settings.qt3 > > cp scons/settings.qt3 settings > > cp scons/Makefile . > > > > > > here are some of the ln lines, seems to be a qt build? > > > > ln -s %{_datadir}/apps/rekallqt/icons/hicolor/32x32/apps/rekall.png > > pixmaps/rekall.png > > cp apps/rekallqt/icons/hicolor/32x32/apps/rekall.png pixmaps/rekallrt.png > > cd $RPM_BUILD_ROOT%{_bindir} > > ln -s %{_bindir}/rekallqt rekall > > ln -s %{_bindir}/rekallqtManual rekallManual > > ln -s %{_bindir}/rekallqtrt rekallrt > > > > Thomas $ rekall rekallMain: argc=1 ptr1=1 argv[ptr1]=[(null)] getSoName: librekallqt_plugin_extra: try [include ld.so.conf.d/*.conf/librekallqt_plugin_extra.la] getSoName: librekallqt_plugin_extra: try [/usr/X11R6/lib/librekallqt_plugin_extra.la] getSoName: librekallqt_plugin_extra: try [/usr/lib/qt3/lib/librekallqt_plugin_extra.la] getSoName: librekallqt_plugin_extra: try [/usr/lib/librekallqt_plugin_extra.la] Warning: QObject::connect: Cannot connect TKAction::activated(int) to (null):: (null) findIconPath: 16x16 (null): ***** not found ***** findIconPath: 16x16 (null): ***** not found ***** findIconPath: 16x16 (null): ***** not found ***** Warning: QObject::connect: Cannot connect TKAction::activated(int) to (null):: (null) Action KB_score not found findIconPath: 16x16 helpabout: ***** not found ***** findIconPath: 16x16 rekallmanual: ***** not found ***** getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] KBWizardCtrlStockDB::KBWizardCtrlStockDB: append: (null) getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] Warning: QSettings::writeEntry: invalid key '/specs' KBWizardCtrlStockDB::~KBWizardCtrlStockDB: saved: (null) getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [include ld.so.conf.d/*.conf/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/X11R6/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/qt3/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_driver_mysql: try [/usr/lib/librekallqt_driver_mysql.la] getSoName: librekallqt_componentview: try [include ld.so.conf.d/*.conf/librekallqt_componentview.la] getSoName: librekallqt_componentview: try [/usr/X11R6/lib/librekallqt_componentview.la] getSoName: librekallqt_componentview: try [/usr/lib/qt3/lib/librekallqt_componentview.la] getSoName: librekallqt_componentview: try [/usr/lib/librekallqt_componentview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_copierview: try [include ld.so.conf.d/*.conf/librekallqt_copierview.la] getSoName: librekallqt_copierview: try [/usr/X11R6/lib/librekallqt_copierview.la] getSoName: librekallqt_copierview: try [/usr/lib/qt3/lib/librekallqt_copierview.la] getSoName: librekallqt_copierview: try [/usr/lib/librekallqt_copierview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_editor: try [include ld.so.conf.d/*.conf/librekallqt_editor.la] getSoName: librekallqt_editor: try [/usr/X11R6/lib/librekallqt_editor.la] getSoName: librekallqt_editor: try [/usr/lib/qt3/lib/librekallqt_editor.la] getSoName: librekallqt_editor: try [/usr/lib/librekallqt_editor.la] KBDBaseDlg::loadParts: cannot create browser librekallqt_editor getSoName: librekallqt_formview: try [include ld.so.conf.d/*.conf/librekallqt_formview.la] getSoName: librekallqt_formview: try [/usr/X11R6/lib/librekallqt_formview.la] getSoName: librekallqt_formview: try [/usr/lib/qt3/lib/librekallqt_formview.la] getSoName: librekallqt_formview: try [/usr/lib/librekallqt_formview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_macroview: try [include ld.so.conf.d/*.conf/librekallqt_macroview.la] getSoName: librekallqt_macroview: try [/usr/X11R6/lib/librekallqt_macroview.la] getSoName: librekallqt_macroview: try [/usr/lib/qt3/lib/librekallqt_macroview.la] getSoName: librekallqt_macroview: try [/usr/lib/librekallqt_macroview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_queryview: try [include ld.so.conf.d/*.conf/librekallqt_queryview.la] getSoName: librekallqt_queryview: try [/usr/X11R6/lib/librekallqt_queryview.la] getSoName: librekallqt_queryview: try [/usr/lib/qt3/lib/librekallqt_queryview.la] getSoName: librekallqt_queryview: try [/usr/lib/librekallqt_queryview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_reportview: try [include ld.so.conf.d/*.conf/librekallqt_reportview.la] getSoName: librekallqt_reportview: try [/usr/X11R6/lib/librekallqt_reportview.la] getSoName: librekallqt_reportview: try [/usr/lib/qt3/lib/librekallqt_reportview.la] getSoName: librekallqt_reportview: try [/usr/lib/librekallqt_reportview.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_tableview: try [include ld.so.conf.d/*.conf/librekallqt_tableview.la] getSoName: librekallqt_tableview: try [/usr/X11R6/lib/librekallqt_tableview.la] getSoName: librekallqt_tableview: try [/usr/lib/qt3/lib/librekallqt_tableview.la] getSoName: librekallqt_tableview: try [/usr/lib/librekallqt_tableview.la] getSoName: librekallqt_script_kjs: try [include ld.so.conf.d/*.conf/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/X11R6/lib/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/lib/qt3/lib/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/lib/librekallqt_script_kjs.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_script_kjs: try [include ld.so.conf.d/*.conf/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/X11R6/lib/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/lib/qt3/lib/librekallqt_script_kjs.la] getSoName: librekallqt_script_kjs: try [/usr/lib/librekallqt_script_kjs.la] findIconPath: 16x16 folder_open: ***** not found ***** getSoName: librekallqt_script_py: try [include ld.so.conf.d/*.conf/librekallqt_script_py.la] getSoName: librekallqt_script_py: try [/usr/X11R6/lib/librekallqt_script_py.la] getSoName: librekallqt_script_py: try [/usr/lib/qt3/lib/librekallqt_script_py.la] getSoName: librekallqt_script_py: try [/usr/lib/librekallqt_script_py.la] findIconPath: 16x16 folder_open: ***** not found ***** Action KB_score not found findIconPath: 16x16 helpabout: ***** not found ***** findIconPath: 16x16 rekallmanual: ***** not found ***** findIconPath: 16x16 : ***** not found ***** findIconPath: 16x16 : ***** not found ***** findIconPath: 16x16 : ***** not found ***** findIconPath: 16x16 : ***** not found ***** findIconPath: 22x22 : ***** not found ***** findIconPath: 16x16 (null): ***** not found ***** Warning: QObject::connect: Cannot connect TKAction::activated(int) to (null):: (null) Action KB_info not found Action KB_about not found Action KB_manual not found Warning: QObject::connect: Use the SLOT or SIGNAL macro to connect KBTableViewer:: findIconPath: 16x16 : ***** not found ***** findIconPath: 16x16 helpabout: ***** not found ***** findIconPath: 16x16 rekallmanual: ***** not found ***** findIconPath: 16x16 edit: ***** not found ***** KBTableViewer::getLineHeight: LNH=21 findIconPath: 48x48 warning: ***** not found ***** <KBForm w="670" onunload="#Unload" rowcount="0" h="350" sloppy="Yes" dx="0" dy="21" onload="#Load" name="TableData" language="py" autosync="Yes" stretch="Grid" showbar="Yes"> <KBScript module="//script/py/TableData"/> <KBQryTable server="Databases" table="product" primary="id"/> <KBGrid w="600" x="40" h="20" y="0" name="$$grid$$"/> <KBRowMark w="40" showrow="Yes" x="0" h="21" y="20"/> <KBField w="100" x="45" master="id" h="21" morph="Yes" y="20" nullok="Yes" expr="id" taborder="1" emptynull="No" name="id"/> <KBField w="100" x="145" master="pname" h="21" morph="Yes" y="20" nullok="Yes" expr="pname" taborder="2" emptynull="Yes" name="pname"/> <KBField w="100" x="245" master="pnumber" h="21" morph="Yes" y="20" nullok="Yes" expr="pnumber" taborder="3" emptynull="Yes" name="pnumber"/> <KBField w="100" x="345" master="pcapacitance" h="21" morph="Yes" y="20" nullok="Yes" expr="pcapacitance" taborder="4" emptynull="Yes" name="pcapacitance"/> <KBField w="100" x="445" master="pstyle" h="21" morph="Yes" y="20" nullok="Yes" expr="pstyle" taborder="5" emptynull="Yes" name="pstyle"/> <KBField w="100" x="545" master="pthread" h="21" morph="Yes" y="20" nullok="Yes" expr="pthread" taborder="6" emptynull="Yes" name="pthread"/> </KBForm> findIconPath: 16x16 (null): ***** not found ***** findIconPath: 16x16 (null): ***** not found ***** findIconPath: 16x16 (null): ***** not found ***** Segmentation fault -- Thomas _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppOn Wednesday 22 August 2007, Paul McNary wrote:
> Hello Thomas > > I'm seeing a problem with 2.4.5 that might be related to yours. > If you open a command window and manually run rekallqt > do you get an error message. You will not see the error > message if you run it from a menu item. > > Try it manually and report the error that it fails with, > maybe it is provising some message before the seg fault. > > Paul > pmcnary@... > > On Tuesday 21 August 2007 00:10, Thomas Spuhler wrote: > > Paul McNary wrote: > > > Thomas > > > > > > Are you using the qt build or the KDE build? > > > > > > Paul > > > pmcnary@... > > > > Hmm... how do I know? > > These are some of the build lines in the spec file > > %build > > export KDEDIR=%{_prefix} > > PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed > > "s/',/', '/g"` > > sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py > > echo "prefix=%{_prefix}" >> scons/settings.qt3 > > echo "with-mysql-libraries=%{_libdir}/mysql" >> scons/settings.qt3 > > echo "with-pgsql-libraries=%{_libdir}" >> scons/settings.qt3 > > echo "with-python-libraries=%{_libdir}" >> scons/settings.qt3 > > echo "with-qt-includes=%{_libdir}/qt-3.3/include" >> scons/settings.qt3 > > echo "with-qt-libraries=%{_libdir}/qt-3.3/lib" >> scons/settings.qt3 > > cp scons/settings.qt3 settings > > cp scons/Makefile . > > > > > > here are some of the ln lines, seems to be a qt build? > > > > ln -s %{_datadir}/apps/rekallqt/icons/hicolor/32x32/apps/rekall.png > > pixmaps/rekall.png > > cp apps/rekallqt/icons/hicolor/32x32/apps/rekall.png pixmaps/rekallrt.png > > cd $RPM_BUILD_ROOT%{_bindir} > > ln -s %{_bindir}/rekallqt rekall > > ln -s %{_bindir}/rekallqtManual rekallManual > > ln -s %{_bindir}/rekallqtrt rekallrt > > > > Thomas I just tried to build an rpm using the pristine source tar using the suse spec it provided It got pretty far but then suddenly an lot of compiling errors came up. script/kjs/kb_cookiejar.h:14:31: error: kjs/object_object.h: No such file or directory script/kjs/kb_cookiejar.h:15:26: error: kjs/internal.h: No such file or directory script/kjs/kb_cookiejar.h:25: error: ‘ObjectPrototypeImp’ has not been declared script/kjs/kb_cookiejar.h:45: error: expected class-name before ‘{’ token script/kjs/kb_cookiejar.h:45: warning: ‘class RekallCookieJarFunctionImp’ has virtual functions but non-virtual destructor script/kjs/kb_cookiejar.cpp:71: error: ‘ObjectPrototypeImp’ has not been declared script/kjs/kb_cookiejar.cpp: In constructor ‘RekallCookieJarObjectImp::RekallCookieJarObjectImp(KJS::ExecState*, int*)’: script/kjs/kb_cookiejar.cpp:74: error: no matching function for call to ‘KJS::Object::Object(int*&)’ /usr/include/kjs/object.h:648: note: candidates are: KJS::Object::Object(KJS::ObjectImp*) /usr/include/kjs/object.h:84: note: KJS::Object::Object() /usr/include/kjs/object.h:82: note: KJS::Object::Object(const KJS::Object&) script/kjs/kb_cookiejar.cpp: In constructor ‘RekallCookieJarFunctionImp::RekallCookieJarFunctionImp(KJS::ExecState*, int, int)’: script/kjs/kb_cookiejar.cpp:123: error: class ‘RekallCookieJarFunctionImp’ does not have any field named ‘InternalFunctionImp’ script/kjs/kb_cookiejar.cpp:125: error: ‘FunctionPrototypeImp’ was not declared in this scope script/kjs/kb_cookiejar.cpp:125: error: expected primary-expression before ‘)’ token script/kjs/kb_cookiejar.cpp:133: error: no matching function for call to ‘KJS::Value::Value(RekallCookieJarFunctionImp* const)’ /usr/include/kjs/value.h:172: note: candidates are: KJS::Value::Value(const KJS::Value&) /usr/include/kjs/value.h:171: note: KJS::Value::Value(KJS::ValueImp*) /usr/include/kjs/value.h:170: note: KJS::Value::Value() script/kjs/kb_cookiejar.cpp:134: error: ‘put’ was not declared in this scope /usr/include/kjs/lookup.h: In function ‘KJS::Value KJS::lookupOrCreateFunction(KJS::ExecState*, const KJS::Identifier&, const KJS::ObjectImp*, int, int, int) [with FuncImp = RekallCookieJarFunctionImp]’: /usr/include/kjs/lookup.h:185: instantiated from ‘KJS::Value KJS::lookupGet(KJS::ExecState*, const KJS::Identifier&, const KJS::HashTable*, const ThisImp*) [with FuncImp = RekallCookieJarFunctionImp, ThisImp = RekallCookieJarObjectImp, ParentImp = KJS::ObjectImp]’ script/kjs/kb_cookiejar.cpp:97: instantiated from here /usr/include/kjs/lookup.h:146: error: cannot convert ‘RekallCookieJarFunctionImp*’ to ‘KJS::ObjectImp*’ in initialization scons: *** [build/kde/script/kjs/kb_cookiejar.os] Error 1 -- Thomas _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppOn Wednesday 22 August 2007 18:29, Thomas Spuhler wrote:
> On Wednesday 22 August 2007, Paul McNary wrote: > > Hello Thomas > > > > I'm seeing a problem with 2.4.5 that might be related to yours. > > If you open a command window and manually run rekallqt > > do you get an error message. You will not see the error > > message if you run it from a menu item. > > > > Try it manually and report the error that it fails with, > > maybe it is provising some message before the seg fault. > > > > Paul > > pmcnary@... > > > > On Tuesday 21 August 2007 00:10, Thomas Spuhler wrote: > > > Paul McNary wrote: > > > > Thomas > > > > > > > > Are you using the qt build or the KDE build? > > > > > > > > Paul > > > > pmcnary@... > > > > > > Hmm... how do I know? > > > These are some of the build lines in the spec file > > > %build > > > export KDEDIR=%{_prefix} > > > PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed > > > "s/',/', '/g"` > > > sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py > > > echo "prefix=%{_prefix}" >> scons/settings.qt3 > > > echo "with-mysql-libraries=%{_libdir}/mysql" >> scons/settings.qt3 > > > echo "with-pgsql-libraries=%{_libdir}" >> scons/settings.qt3 > > > echo "with-python-libraries=%{_libdir}" >> scons/settings.qt3 > > > echo "with-qt-includes=%{_libdir}/qt-3.3/include" >> scons/settings.qt3 > > > echo "with-qt-libraries=%{_libdir}/qt-3.3/lib" >> scons/settings.qt3 > > > cp scons/settings.qt3 settings > > > cp scons/Makefile . > > > > > > > > > here are some of the ln lines, seems to be a qt build? > > > > > > ln -s %{_datadir}/apps/rekallqt/icons/hicolor/32x32/apps/rekall.png > > > pixmaps/rekall.png > > > cp apps/rekallqt/icons/hicolor/32x32/apps/rekall.png > > > pixmaps/rekallrt.png cd $RPM_BUILD_ROOT%{_bindir} > > > ln -s %{_bindir}/rekallqt rekall > > > ln -s %{_bindir}/rekallqtManual rekallManual > > > ln -s %{_bindir}/rekallqtrt rekallrt > > > > > > Thomas > > I just tried to build an rpm using the pristine source tar using the suse > spec it provided > It got pretty far but then suddenly an lot of compiling errors came up. > > script/kjs/kb_cookiejar.h:14:31: error: kjs/object_object.h: No such file > or directory > script/kjs/kb_cookiejar.h:15:26: error: kjs/internal.h: No such file or > directory > script/kjs/kb_cookiejar.h:25: error: ‘ObjectPrototypeImp’ has not been > declared > script/kjs/kb_cookiejar.h:45: error: expected class-name before ‘{’ token > script/kjs/kb_cookiejar.h:45: warning: ‘class RekallCookieJarFunctionImp’ > has virtual functions but non-virtual destructor > script/kjs/kb_cookiejar.cpp:71: error: ‘ObjectPrototypeImp’ has not been > declared > script/kjs/kb_cookiejar.cpp: In > constructor > ‘RekallCookieJarObjectImp::RekallCookieJarObjectImp(KJS::ExecState*, > int*)’: > script/kjs/kb_cookiejar.cpp:74: error: no matching function for call > to ‘KJS::Object::Object(int*&)’ > /usr/include/kjs/object.h:648: note: candidates are: > KJS::Object::Object(KJS::ObjectImp*) > /usr/include/kjs/object.h:84: note: KJS::Object::Object() > /usr/include/kjs/object.h:82: note: > KJS::Object::Object(const KJS::Object&) > script/kjs/kb_cookiejar.cpp: In > constructor > ‘RekallCookieJarFunctionImp::RekallCookieJarFunctionImp(KJS::ExecState*, > int, int)’: > script/kjs/kb_cookiejar.cpp:123: error: class ‘RekallCookieJarFunctionImp’ > does not have any field named ‘InternalFunctionImp’ > script/kjs/kb_cookiejar.cpp:125: error: ‘FunctionPrototypeImp’ was not > declared in this scope > script/kjs/kb_cookiejar.cpp:125: error: expected primary-expression before > ‘)’ token > script/kjs/kb_cookiejar.cpp:133: error: no matching function for call > to ‘KJS::Value::Value(RekallCookieJarFunctionImp* const)’ > /usr/include/kjs/value.h:172: note: candidates are: KJS::Value::Value(const > KJS::Value&) > /usr/include/kjs/value.h:171: note: > KJS::Value::Value(KJS::ValueImp*) > /usr/include/kjs/value.h:170: note: KJS::Value::Value() > script/kjs/kb_cookiejar.cpp:134: error: ‘put’ was not declared in this > scope /usr/include/kjs/lookup.h: In function ‘KJS::Value > KJS::lookupOrCreateFunction(KJS::ExecState*, const KJS::Identifier&, const > KJS::ObjectImp*, int, int, int) [with FuncImp = > RekallCookieJarFunctionImp]’: /usr/include/kjs/lookup.h:185: instantiated > from ‘KJS::Value > KJS::lookupGet(KJS::ExecState*, const KJS::Identifier&, const > KJS::HashTable*, const ThisImp*) [with FuncImp = > RekallCookieJarFunctionImp, ThisImp = RekallCookieJarObjectImp, ParentImp = > KJS::ObjectImp]’ > script/kjs/kb_cookiejar.cpp:97: instantiated from here > /usr/include/kjs/lookup.h:146: error: cannot > convert ‘RekallCookieJarFunctionImp*’ to ‘KJS::ObjectImp*’ in > initialization scons: *** [build/kde/script/kjs/kb_cookiejar.os] Error 1 The way that I started isolating problems, was to start disabling modules that caused trouble, then start adding them back in settings.qt3. Like here kjs is causing a problem. set enable-kjs=no in settings.qt3 Then config again and try compile again. I been trying to get a base of some sort built and then start figuring out why the modules won't build. I don't kmow GCC but it appears to not be putting your include file locations for kjs in the build. SCons issue. Someone more familiar with SCons and Rekall will have to help here. Sorry I can't help with more detail but I'm only a couple of steps ahead of you in building and compiling and that is with the USLC compilers not GCC. Paul pmcnary@... _______________________________________________ Rekall mailing list Rekall@... http://www.mailman.a-i-s.co.uk/cgi-bin/mailman/listinfo/rekall |
|
|
Re: 2.4.5 Build problem with kb_xbase.cppOn Wednesday 22 August 2007, Paul McNary wrote:
> On Wednesday 22 August 2007 18:29, Thomas Spuhler wrote: > > On Wednesday 22 August 2007, Paul McNary wrote: > > > Hello Thomas > > > > > > I'm seeing a problem with 2.4.5 that might be related to yours. > > > If you open a command window and manually run rekallqt > > > do you get an error message. You will not see the error > > > message if you run it from a menu item. > > > > > > Try it manually and report the error that it fails with, > > > maybe it is provising some message before the seg fault. > > > > > > Paul > > > pmcnary@... > > > > > > On Tuesday 21 August 2007 00:10, Thomas Spuhler wrote: > > > > Paul McNary wrote: > > > > > Thomas > > > > > > > > > > Are you using the qt build or the KDE build? > > > > > > > > > > Paul > > > > > pmcnary@... > > > > > > > > Hmm... how do I know? > > > > These are some of the build lines in the spec file > > > > %build > > > > export KDEDIR=%{_prefix} > > > > PARSED_OPT_FLAGS=`echo \'$RPM_OPT_FLAGS\' | sed "s/ /',/g" | sed > > > > "s/',/', '/g"` > > > > sed -i "s|'-Wall'|[$PARSED_OPT_FLAGS]|" scons/rkBuilder.py > > > > echo "prefix=%{_prefix}" >> sco |