Tim,
Slackware 13.1
Clean build, previous packages all uninstalled.
I built tqt3, tqtinterface but dbus-tqt fails to build for both 32-bit and 64-bit:
-- checking for one of the modules 'tqt' CMake Error at cmake/modules/TDEMacros.cmake:23 (message): #################################################
tmoc is not found! tqt is correctly installed?
#################################################
From my last full build run a couple of days ago, my dbus-tqt build log shows this:
-- checking for one of the modules 'tqt' -- tmoc path: /usr/bin/tmoc -- moc path: /opt/trinity/bin/moc -- uic path: /opt/trinity/bin/uic -- tqt-replace path: /usr/bin/tqt-replace -- Performing Test HAVE_USABLE_TQT -- Performing Test HAVE_USABLE_TQT - Success -- Configuring done
I verified that tmoc is installed at /usr/bin/tmoc.
Not sure what changed where, but has to be a recent patch.
Darrell
Slackware 13.1
Clean build, previous packages all uninstalled.
I built tqt3, tqtinterface but dbus-tqt fails to build for both 32-bit and 64-bit:
-- checking for one of the modules 'tqt' CMake Error at cmake/modules/TDEMacros.cmake:23 (message): #################################################
tmoc is not found! tqt is correctly installed?
#################################################
From my last full build run a couple of days ago, my dbus-tqt build log shows this:
-- checking for one of the modules 'tqt' -- tmoc path: /usr/bin/tmoc -- moc path: /opt/trinity/bin/moc -- uic path: /opt/trinity/bin/uic -- tqt-replace path: /usr/bin/tqt-replace -- Performing Test HAVE_USABLE_TQT -- Performing Test HAVE_USABLE_TQT - Success -- Configuring done
I verified that tmoc is installed at /usr/bin/tmoc.
Not sure what changed where, but has to be a recent patch.
Same for dbus-1-tqt. :-)
Darrell
Slackware 13.1
Clean build, previous packages all uninstalled.
I built tqt3, tqtinterface but dbus-tqt fails to build
for
both 32-bit and 64-bit:
-- checking for one of the modules 'tqt' CMake Error at cmake/modules/TDEMacros.cmake:23 (message): #################################################
tmoc is not found! tqt is correctly installed?
#################################################
From my last full build run a couple of days ago, my dbus-tqt build log shows this:
-- checking for one of the modules 'tqt' -- tmoc path: /usr/bin/tmoc -- moc path: /opt/trinity/bin/moc -- uic path: /opt/trinity/bin/uic -- tqt-replace path: /usr/bin/tqt-replace -- Performing Test HAVE_USABLE_TQT -- Performing Test HAVE_USABLE_TQT - Success -- Configuring done
I verified that tmoc is installed at /usr/bin/tmoc.
Not sure what changed where, but has to be a recent
patch.
Same for dbus-1-tqt. :-)
arts too. :-)
Seems to be a global problem.
Darrell
Slackware 13.1
Clean build, previous packages all uninstalled.
I built tqt3, tqtinterface but dbus-tqt fails to build
for
both 32-bit and 64-bit:
-- checking for one of the modules 'tqt' CMake Error at cmake/modules/TDEMacros.cmake:23 (message): #################################################
tmoc is not found! tqt is correctly installed?
#################################################
From my last full build run a couple of days ago, my dbus-tqt build log shows this:
-- checking for one of the modules 'tqt' -- tmoc path: /usr/bin/tmoc -- moc path: /opt/trinity/bin/moc -- uic path: /opt/trinity/bin/uic -- tqt-replace path: /usr/bin/tqt-replace -- Performing Test HAVE_USABLE_TQT -- Performing Test HAVE_USABLE_TQT - Success -- Configuring done
I verified that tmoc is installed at /usr/bin/tmoc.
Not sure what changed where, but has to be a recent
patch.
Same for dbus-1-tqt. :-)
arts too. :-)
Seems to be a global problem.
Darrell
I managed to typo a CMakeLists.txt file in tqtinterface during the flurry of bugfixes yesterday. The problem should be rectified as of GIT hash 13bfcd3.
Sorry about the inconvenience!
Tim
I managed to typo a CMakeLists.txt file in tqtinterface during the flurry of bugfixes yesterday. The problem should be rectified as of GIT hash 13bfcd3.
Sorry about the inconvenience!
Aargh!!! You beat me! I found the same typo, although I missed the second line. :-)
Yes, you have been pounding the bug tracker. Thank you!
Darrell
Seems to be a global problem.
Looks like the problem is from GIT hash 8d5d0b53. The tqt.pc file no longer contains the required information and there is not tqtqui.pc file.
I think this is the cause:
configure_file( tqt.pc.cmake tqt.pc @ONLY ) +configure_file( tqtqui.pc.cmake tqt.pc @ONLY )
Proposed patch:
diff -urN tqtinterface/qtinterface/CMakeLists.txt tqtinterface.new/qtinterface/CMakeLists.txt --- tqtinterface/qtinterface/CMakeLists.txt 2012-06-12 17:30:31.000000000 -0500 +++ tqtinterface.new/qtinterface/CMakeLists.txt 2012-06-13 13:19:23.000000000 -0500 @@ -139,7 +139,7 @@ endforeach( )
configure_file( tqt.pc.cmake tqt.pc @ONLY ) -configure_file( tqtqui.pc.cmake tqt.pc @ONLY ) +configure_file( tqtqui.pc.cmake tqtqui.pc @ONLY )
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} )
Darrell