On 05/12/2011 10:25 AM, David C. Rankin wrote:
On 05/12/2011 08:55 AM, David C. Rankin wrote:
On 05/12/2011 01:40 AM, Timothy Pearson wrote:
/build/src/build/kcontrol/style/stylepreview.ui.h:36:32: error:
'QWIDGET_OBJECT_NAME_STRING' was not declared in this scope
/build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error: 'Q_NoFocus' was
not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o]
Error 1
make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all]
Error 2
make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Is this a build error on my end, or is this a CMake or header
issue?
Looks like you have an old version of TQt3 installed. Look for any
outdated versions of the tqt.h header file that are available on your system and remove them.
Tim
Thanks Tim, It must be in the svn code then. All tqt file were from tqtinterface
that was
downloaded from the server yesterday. (Tuesday at the earliest). May
10 21:37 trinity-tqtinterface-1230411-1-x86_64.pkg.tar.xz
I've rebuilt tqtinterface with the code just a minute ago and I've
kicked off
the kdebase build again. I'll report back.
That build failed at the same place, so I went back an rebuilt Qt3
(patched from
3.3.8b with the 3.3.8c patch from: http://www.trinitydesktop.org/wiki/pub/Developers/Qt3/qt3_3.3.8c.diff I
then built tqtinterface again from the current code, I then kicked off
the kdebase build again and it still fails at the same place: [ 16%] Building CXX object kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o cd
/build/src/build/kcontrol/style && /usr/bin/c++
-Dkcm_style_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION
-DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC
-I/build/src/build/kcontrol/style -I/build/src/build -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o -c /build/src/build/kcontrol/style/stylepreview.cpp In file included from /build/src/build/kcontrol/style/stylepreview.cpp:30:0: /build/src/build/kcontrol/style/stylepreview.ui.h: In member function
'virtual
void StylePreview::init()': /build/src/build/kcontrol/style/stylepreview.ui.h:36:32: error:
'QWIDGET_OBJECT_NAME_STRING' was not declared in this scope
/build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error:
'Q_NoFocus' was
not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o]
Error 1
make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build Dunno. This is one of those "It built 3 days ago, but won't build now."
things.
No change to my kdebase build script. I'll go tinker with the build
script, but
I'm a bit stumped...
It doesn't like the following line (^^^^). Is this another gcc 4.6
issue?
#include <tqobjectlist.h> void StylePreview::init() { // Ensure that the user can't toy with the child widgets. // Method borrowed from Qt's qtconfig. QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ QObjectListIt it(*l); QObject* obj; while ((obj = it.current()) != 0) { ++it; obj->installEventFilter(this); ((QWidget*)obj)->setFocusPolicy(Q_NoFocus); } delete l; }
OK, it looks like there is definitely an error in the code you highlighted. QWIDGET_OBJECT_NAME_STRING should be TQWIDGET_OBJECT_NAME_STRING. This is caused by an overagressive tqt-replace and has been fixed in SVN revision 1231611. This means you will have to recompile and reinstall tqtinterface from the latest SVN sources.
Tim
On 05/12/2011 11:37 AM, Timothy Pearson wrote:
OK, it looks like there is definitely an error in the code you highlighted. QWIDGET_OBJECT_NAME_STRING should be TQWIDGET_OBJECT_NAME_STRING. This is caused by an overagressive tqt-replace and has been fixed in SVN revision 1231611. This means you will have to recompile and reinstall tqtinterface from the latest SVN sources.
Tim
Good, I'm not going crazy...
On 05/12/2011 12:16 PM, David C. Rankin wrote:
On 05/12/2011 11:37 AM, Timothy Pearson wrote:
OK, it looks like there is definitely an error in the code you highlighted. QWIDGET_OBJECT_NAME_STRING should be TQWIDGET_OBJECT_NAME_STRING. This is caused by an overagressive tqt-replace and has been fixed in SVN revision 1231611. This means you will have to recompile and reinstall tqtinterface from the latest SVN sources.
Tim
Good, I'm not going crazy...
Tim,
After rebuild and install of tqtinterface, I still get the same kdebase build failure:
[ 16%] Building CXX object kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o cd /build/src/build/kcontrol/style && /usr/bin/c++ -Dkcm_style_module_EXPORTS -DHAVE_CONFIG_H -march=i686 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kcontrol/style -I/build/src/build -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o -c /build/src/build/kcontrol/style/stylepreview.cpp In file included from /build/src/build/kcontrol/style/stylepreview.cpp:30:0: /build/src/build/kcontrol/style/stylepreview.ui.h: In member function 'virtual void StylePreview::init()': /build/src/build/kcontrol/style/stylepreview.ui.h:36:32: error: 'QWIDGET_OBJECT_NAME_STRING' was not declared in this scope /build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error: 'Q_NoFocus' was not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /home/david/bld/david/build
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
On 05/12/2011 12:16 PM, David C. Rankin wrote:
On 05/12/2011 11:37 AM, Timothy Pearson wrote:
OK, it looks like there is definitely an error in the code you highlighted. QWIDGET_OBJECT_NAME_STRING should be TQWIDGET_OBJECT_NAME_STRING. This is caused by an overagressive tqt-replace and has been fixed in SVN revision 1231611. This means you will have to recompile and reinstall tqtinterface from the latest SVN sources.
Tim
Good, I'm not going crazy...
Tim,
After rebuild and install of tqtinterface, I still get the same kdebase build failure:
[ 16%] Building CXX object kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o cd /build/src/build/kcontrol/style && /usr/bin/c++ -Dkcm_style_module_EXPORTS -DHAVE_CONFIG_H -march=i686 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kcontrol/style -I/build/src/build -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o -c /build/src/build/kcontrol/style/stylepreview.cpp In file included from /build/src/build/kcontrol/style/stylepreview.cpp:30:0: /build/src/build/kcontrol/style/stylepreview.ui.h: In member function 'virtual void StylePreview::init()': /build/src/build/kcontrol/style/stylepreview.ui.h:36:32: error: 'QWIDGET_OBJECT_NAME_STRING' was not declared in this scope /build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error: 'Q_NoFocus' was not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /home/david/bld/david/build
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
Can you please send me the tqt-replace file as it exists on your system?
Thanks!
Tim
On 05/12/2011 10:14 PM, Timothy Pearson wrote:
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
Can you please send me the tqt-replace file as it exists on your system?
Thanks!
Tim
Sure, sorry for the delay. This is after the build of Qt3, tqt-interface on 5/13. (trinity-tqtinterface-1231611-1-x86_64.pkg.tar.xz)
On 05/12/2011 10:14 PM, Timothy Pearson wrote:
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
Can you please send me the tqt-replace file as it exists on your system?
Thanks!
Tim
Sure, sorry for the delay. This is after the build of Qt3, tqt-interface on 5/13. (trinity-tqtinterface-1231611-1-x86_64.pkg.tar.xz)
OK, it looks like I updated one of four required files in TQt3 earlier. The remaining files have been updated in SVN revision 1231734.
Let me know if you still run into problems after rebuilding/reinstalling tqtinterface from SVN!
Tim
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
On 05/12/2011 10:14 PM, Timothy Pearson wrote:
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
Can you please send me the tqt-replace file as it exists on your system?
Thanks!
Tim
Sure, sorry for the delay. This is after the build of Qt3, tqt-interface on 5/13. (trinity-tqtinterface-1231611-1-x86_64.pkg.tar.xz)
OK, it looks like I updated one of four required files in TQt3 earlier. The remaining files have been updated in SVN revision 1231734.
Let me know if you still run into problems after rebuilding/reinstalling tqtinterface from SVN!
Tim
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
he.he.he.he....
You sure there isn't a 5th location we need to change? :)
Built/Installed:
152720 May 13 13:58 trinity-tqtinterface-1231734-1-x86_64.pkg.tar.xz
which gave me:
22983 May 13 13:57 /dat_e/david/bld/david/opt/qt/bin/tqt-replace (attached)
which took me....:
[ 16%] Building CXX object kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o cd /build/src/build/kcontrol/style && /usr/bin/c++ -Dkcm_style_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kcontrol/style -I/build/src/build -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o -c /build/src/build/kcontrol/style/stylepreview.cpp In file included from /build/src/build/kcontrol/style/stylepreview.cpp:30:0: /build/src/build/kcontrol/style/stylepreview.ui.h: In member function 'virtual void StylePreview::init()': /build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error: 'Q_NoFocus' was not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
back to the same place :(
Build system is ready for round No. 6 :)
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
On 05/12/2011 10:14 PM, Timothy Pearson wrote:
No T in QObjectList* l = queryList(QWIDGET_OBJECT_NAME_STRING);
Can you please send me the tqt-replace file as it exists on your system?
Thanks!
Tim
Sure, sorry for the delay. This is after the build of Qt3, tqt-interface on 5/13. (trinity-tqtinterface-1231611-1-x86_64.pkg.tar.xz)
OK, it looks like I updated one of four required files in TQt3 earlier. The remaining files have been updated in SVN revision 1231734.
Let me know if you still run into problems after rebuilding/reinstalling tqtinterface from SVN!
Tim
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
he.he.he.he....
You sure there isn't a 5th location we need to change? :)
Built/Installed:
152720 May 13 13:58 trinity-tqtinterface-1231734-1-x86_64.pkg.tar.xz
which gave me:
22983 May 13 13:57 /dat_e/david/bld/david/opt/qt/bin/tqt-replace (attached)
which took me....:
[ 16%] Building CXX object kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o cd /build/src/build/kcontrol/style && /usr/bin/c++ -Dkcm_style_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kcontrol/style -I/build/src/build -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o -c /build/src/build/kcontrol/style/stylepreview.cpp In file included from /build/src/build/kcontrol/style/stylepreview.cpp:30:0: /build/src/build/kcontrol/style/stylepreview.ui.h: In member function 'virtual void StylePreview::init()': /build/src/build/kcontrol/style/stylepreview.ui.h:43:41: error: 'Q_NoFocus' was not declared in this scope make[2]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/stylepreview.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kcontrol/style/CMakeFiles/kcm_style-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
back to the same place :(
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
On 05/13/2011 02:31 PM, Timothy Pearson wrote:
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
OOH! SO CLOOSSEE!!!
[ 97%] Building CXX object ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o cd /build/src/build/ksysguard/gui/SensorDisplayLib && /usr/bin/c++ -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -I/build/src/build/ksysguard/gui/SensorDisplayLib -I/build/src/kdebase/ksysguard/gui/SensorDisplayLib -I/build/src/build -I/build/src/kdebase/ksysguard/gui/ksgrd -I/build/src/kdebase/ksysguard/gui -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -fPIC -o CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o -c /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp In file included from /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp:27:0: /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h: In member function 'void MultiMeterSettingsWidget::init()': /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h:12:75: error: 'TQT_QOBJECT' was not declared in this scope make[2]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
On 05/13/2011 05:13 PM, David C. Rankin wrote:
On 05/13/2011 02:31 PM, Timothy Pearson wrote:
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
OOH! SO CLOOSSEE!!!
[ 97%] Building CXX object ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o
cd /build/src/build/ksysguard/gui/SensorDisplayLib && /usr/bin/c++ -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -I/build/src/build/ksysguard/gui/SensorDisplayLib -I/build/src/kdebase/ksysguard/gui/SensorDisplayLib -I/build/src/build -I/build/src/kdebase/ksysguard/gui/ksgrd -I/build/src/kdebase/ksysguard/gui -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -fPIC -o CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o -c /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp In file included from /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp:27:0: /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h: In member function 'void MultiMeterSettingsWidget::init()': /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h:12:75: error: 'TQT_QOBJECT' was not declared in this scope make[2]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
Oops... Forgot tqt-replace. (attached)
On 05/13/2011 05:13 PM, David C. Rankin wrote:
On 05/13/2011 02:31 PM, Timothy Pearson wrote:
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
OOH! SO CLOOSSEE!!!
[ 97%] Building CXX object ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o
cd /build/src/build/ksysguard/gui/SensorDisplayLib && /usr/bin/c++ -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -I/build/src/build/ksysguard/gui/SensorDisplayLib -I/build/src/kdebase/ksysguard/gui/SensorDisplayLib -I/build/src/build -I/build/src/kdebase/ksysguard/gui/ksgrd -I/build/src/kdebase/ksysguard/gui -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -fPIC -o CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o -c /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp In file included from /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp:27:0: /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h: In member function 'void MultiMeterSettingsWidget::init()': /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h:12:75: error: 'TQT_QOBJECT' was not declared in this scope make[2]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
Oops... Forgot tqt-replace. (attached)
OK, attempted fix is in SVN revision 1231776. Rebuild/reinstall tqtinterface and try yet again...
Tim
On 05/14/2011 01:25 AM, Timothy Pearson wrote:
On 05/13/2011 05:13 PM, David C. Rankin wrote:
On 05/13/2011 02:31 PM, Timothy Pearson wrote:
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
OOH! SO CLOOSSEE!!!
[ 97%] Building CXX object ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o
cd /build/src/build/ksysguard/gui/SensorDisplayLib&& /usr/bin/c++ -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -I/build/src/build/ksysguard/gui/SensorDisplayLib -I/build/src/kdebase/ksysguard/gui/SensorDisplayLib -I/build/src/build -I/build/src/kdebase/ksysguard/gui/ksgrd -I/build/src/kdebase/ksysguard/gui -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -fPIC -o CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o -c /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp In file included from /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp:27:0: /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h: In member function 'void MultiMeterSettingsWidget::init()': /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h:12:75: error: 'TQT_QOBJECT' was not declared in this scope make[2]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
Oops... Forgot tqt-replace. (attached)
OK, attempted fix is in SVN revision 1231776. Rebuild/reinstall tqtinterface and try yet again...
Tim
Ouch! I liked the 97% build completion much better :) Looks like the last change had an unintended consequence for the start of the build. I rebuilt/installed tqtinterface:
152704 May 14 10:25 trinity-tqtinterface-1231776-1-x86_64.pkg.tar.xz 23025 May 14 10:23 /dat_e/david/bld/david/opt/qt/bin/tqt-replace
Then I proceeded to build kdebase:
[ 0%] Building CXX object kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o cd /build/src/build/kdmlib && /usr/bin/c++ -Dkgreet_classic_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kdmlib -I/build/src/kdebase/kdm/kfrontend -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o -c /build/src/kdebase/kdmlib/kgreet_classic.cpp In file included from /build/src/kdebase/kdmlib/kgreet_classic.cpp:506:0: /build/src/build/kdmlib/kgreet_classic.moc: In static member function 'static QMetaObject* KClassicGreeter::staticMetaObject()': /build/src/build/kdmlib/kgreet_classic.moc:54:33: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual void* KClassicGreeter::qt_cast(const char*)': /build/src/build/kdmlib/kgreet_classic.moc:80:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_invoke(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:89:9: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_emit(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:96:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_property(int, int, QVariant*)': /build/src/build/kdmlib/kgreet_classic.moc:102:12: error: 'publicQObject' has not been declared make[2]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
tqt-replace is attached
On 05/14/2011 01:25 AM, Timothy Pearson wrote:
On 05/13/2011 05:13 PM, David C. Rankin wrote:
On 05/13/2011 02:31 PM, Timothy Pearson wrote:
On 05/13/2011 12:53 PM, Timothy Pearson wrote:
Build system is ready for round No. 6 :)
OK, I put in an attempted fix in SVN revision 1231739. Rebuild/reinstall tqtinterface and try again...
It is possible that the fix broke other things, so please let me know if you run into other problems.
Thanks!
Tim
OOH! SO CLOOSSEE!!!
[ 97%] Building CXX object ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o
cd /build/src/build/ksysguard/gui/SensorDisplayLib&& /usr/bin/c++ -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -I/build/src/build/ksysguard/gui/SensorDisplayLib -I/build/src/kdebase/ksysguard/gui/SensorDisplayLib -I/build/src/build -I/build/src/kdebase/ksysguard/gui/ksgrd -I/build/src/kdebase/ksysguard/gui -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -fPIC -o CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o -c /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp In file included from /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.cpp:27:0: /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h: In member function 'void MultiMeterSettingsWidget::init()': /build/src/build/ksysguard/gui/SensorDisplayLib/MultiMeterSettingsWidget.ui.h:12:75: error: 'TQT_QOBJECT' was not declared in this scope make[2]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/MultiMeterSettingsWidget.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [ksysguard/gui/SensorDisplayLib/CMakeFiles/sensordisplays-static.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
Oops... Forgot tqt-replace. (attached)
OK, attempted fix is in SVN revision 1231776. Rebuild/reinstall tqtinterface and try yet again...
Tim
Ouch! I liked the 97% build completion much better :) Looks like the last change had an unintended consequence for the start of the build. I rebuilt/installed tqtinterface:
152704 May 14 10:25 trinity-tqtinterface-1231776-1-x86_64.pkg.tar.xz 23025 May 14 10:23 /dat_e/david/bld/david/opt/qt/bin/tqt-replace
Then I proceeded to build kdebase:
[ 0%] Building CXX object kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o cd /build/src/build/kdmlib && /usr/bin/c++ -Dkgreet_classic_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kdmlib -I/build/src/kdebase/kdm/kfrontend -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o -c /build/src/kdebase/kdmlib/kgreet_classic.cpp In file included from /build/src/kdebase/kdmlib/kgreet_classic.cpp:506:0: /build/src/build/kdmlib/kgreet_classic.moc: In static member function 'static QMetaObject* KClassicGreeter::staticMetaObject()': /build/src/build/kdmlib/kgreet_classic.moc:54:33: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual void* KClassicGreeter::qt_cast(const char*)': /build/src/build/kdmlib/kgreet_classic.moc:80:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_invoke(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:89:9: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_emit(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:96:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_property(int, int, QVariant*)': /build/src/build/kdmlib/kgreet_classic.moc:102:12: error: 'publicQObject' has not been declared make[2]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... Build failed, check /dat_e/david/bld/david/build
tqt-replace is attached
OK, this time I rebuilt the packages myself successfully, so there is a good chance SVN revision 1231902 will fix the problem. Rebuild/reinstall tqtinterface per usual.
Tim
On 05/14/2011 03:54 PM, Timothy Pearson wrote:
OK, this time I rebuilt the packages myself successfully, so there is a good chance SVN revision 1231902 will fix the problem. Rebuild/reinstall tqtinterface per usual.
Tim
Hmm....
17:11 archangel:/dat_e/david/bld/pbpkg/trinity-kdebase> cd /dat_e/david/bld/david/build/src/kdebase/ 17:24 archangel:/dat_e/david/bld/david/build/src/kdebase> svnversion 1231922
kickoff the kdebase build:
[ 0%] Built target dmctl-static make -f kdmlib/CMakeFiles/kgreet_classic-module.dir/build.make kdmlib/CMakeFiles/kgreet_classic-module.dir/depend make[2]: Entering directory `/build/src/build' /usr/bin/cmake -E cmake_progress_report /build/src/build/CMakeFiles [ 0%] Generating kgreet_classic.moc cd /build/src/build/kdmlib && /opt/qt/bin/tmoc /build/src/kdebase/kdmlib/kgreet_classic.h -o /build/src/build/kdmlib/kgreet_classic.moc cd /build/src/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /build/src/kdebase /build/src/kdebase/kdmlib /build/src/build /build/src/build/kdmlib /build/src/build/kdmlib/CMakeFiles/kgreet_classic-module.dir/DependInfo.cmake --color= Scanning dependencies of target kgreet_classic-module make[2]: Leaving directory `/build/src/build' make -f kdmlib/CMakeFiles/kgreet_classic-module.dir/build.make kdmlib/CMakeFiles/kgreet_classic-module.dir/build make[2]: Entering directory `/build/src/build' /usr/bin/cmake -E cmake_progress_report /build/src/build/CMakeFiles [ 0%] Building CXX object kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o cd /build/src/build/kdmlib && /usr/bin/c++ -Dkgreet_classic_module_EXPORTS -DHAVE_CONFIG_H -march=x86-64 -mtune=generic -O2 -pipe -DQT_NO_ASCII_CAST -DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_THREAD_SUPPORT -D_REENTRANT -include tqt.h -fPIC -I/build/src/build/kdmlib -I/build/src/kdebase/kdm/kfrontend -I/opt/trinity/include -I/opt/qt/include -I/opt/qt/include/tqt -o CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o -c /build/src/kdebase/kdmlib/kgreet_classic.cpp In file included from /build/src/kdebase/kdmlib/kgreet_classic.cpp:506:0: /build/src/build/kdmlib/kgreet_classic.moc: In static member function 'static QMetaObject* KClassicGreeter::staticMetaObject()': /build/src/build/kdmlib/kgreet_classic.moc:54:33: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual void* KClassicGreeter::qt_cast(const char*)': /build/src/build/kdmlib/kgreet_classic.moc:80:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_invoke(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:89:9: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_emit(int, QUObject*)': /build/src/build/kdmlib/kgreet_classic.moc:96:12: error: 'publicQObject' has not been declared /build/src/build/kdmlib/kgreet_classic.moc: In member function 'virtual bool KClassicGreeter::qt_property(int, int, QVariant*)': /build/src/build/kdmlib/kgreet_classic.moc:102:12: error: 'publicQObject' has not been declared make[2]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/kgreet_classic.cpp.o] Error 1 make[2]: Leaving directory `/build/src/build' make[1]: *** [kdmlib/CMakeFiles/kgreet_classic-module.dir/all] Error 2 make[1]: Leaving directory `/build/src/build' make: *** [all] Error 2 ==> ERROR: A failure occurred in build(). Aborting...
Bummer ... :)
Are you sure you pushed the commit through? I updated another directory and all that changed was the AUTHORS file???
17:34 archangel:~/tde/svn/trinity/kdebase> svn up * U AUTHORS Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922. Updated to revision 1231922.
On 05/14/2011 05:36 PM, David C. Rankin wrote:
Hmm....
17:11 archangel:/dat_e/david/bld/pbpkg/trinity-kdebase> cd /dat_e/david/bld/david/build/src/kdebase/ 17:24 archangel:/dat_e/david/bld/david/build/src/kdebase> svnversion 1231922
kickoff the kdebase build:
[ 0%] Built target dmctl-static make -f kdmlib/CMakeFiles/kgreet_classic-module.dir/build.make kdmlib/CMakeFiles/kgreet_classic-module.dir/depend
Hold on Tim,
I rebuilt tqtinterface again and now I've passed 1% on kdebase -- I'll keep you posted - give me 10 minutes to complete the build -- fingers crossed!
On 05/14/2011 05:55 PM, David C. Rankin wrote:
On 05/14/2011 05:36 PM, David C. Rankin wrote:
Hmm....
17:11 archangel:/dat_e/david/bld/pbpkg/trinity-kdebase> cd /dat_e/david/bld/david/build/src/kdebase/ 17:24 archangel:/dat_e/david/bld/david/build/src/kdebase> svnversion 1231922
kickoff the kdebase build:
[ 0%] Built target dmctl-static make -f kdmlib/CMakeFiles/kgreet_classic-module.dir/build.make kdmlib/CMakeFiles/kgreet_classic-module.dir/depend
Hold on Tim,
I rebuilt tqtinterface again and now I've passed 1% on kdebase -- I'll keep you posted - give me 10 minutes to complete the build -- fingers crossed!
Hah! Success!
32848156 May 14 18:16 trinity-kdebase-1231913-1-x86_64.pkg.tar.xz