On Tue, Mar 23, 2010 at 6:44 PM, Gregor Dschung <[email protected]> wrote: >> >> make clean >> ./bootstrap >> ./configure <your args here> >> make && make check >> sudo make install >> >> Eric >> > > At first that wasn't successful. Then I've taken a deeper look into > the make process: > gr-qtgui/src/lib/Makefile.am > [...] > if BUILD_QT > %_moc.cc : %.h > $(QT_MOC_EXEC) -DQT_SHARED -DQT_NO_DEBUG -DQT_OPENGL_LIB > -DQT_GUI_LIB -DQT_CORE_LIB $< -o $@ > > %_ui.h : %.ui > $(QT_UIC_EXEC) $< -o $@ > else > %_moc.cc : %.h > touch $@ > > %_ui.h : %.ui > touch $@ > endif > [...] > > So BUILD_QT needs to be true, which is set in config/grc_gr_qtgui.m4 > if "[PyQt4.QtCore.PYQT_VERSION >= 260000]". > -> I needed to install python-qt4-devel. After that, everything compiles fine. > ------- > I suggest to have python-qt4-devel as an obligational dependency for > gr-qtgui, so that---if that package is missing---the ./configure step > won't mark gr-qtgui as build-able. Also, if the moc-files hadn't be > included in the tar-ball, they would have been needed to build. > > Regards, > Gregor
Yes, you're right, this should be an explicit requirement. I thought it was, but it slipped through the cracks. I'll put it on my todo list. Tom _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
