|
From: Jérôme L. <lod...@us...> - 2011-07-24 06:11:20
|
Le samedi 23 juillet 2011, Mojca Miklavec a écrit : > And what about Qt? > > Last time when I tried it (after patching some flags) it was stuck at > > ./configure --enable-qt > > qtterminal/QtGnuplotWidget.cpp:280:34: error: ui_QtGnuplotSettings.h: > No such file or directory > > I can only confirm that ui_QtGnuplotSettings.h was missing in gnuplot > and that it was referenced from the file mentioned above. > > I'm willing to help to sort out the missing flags, but I cannot help > if files are missing. ui_QtGnuplotSettings.h is not missing. It should be generated by the build system from the file QtGnuplotSettings.ui, using the uic program. The command for the generation of this file is located at lines 107 and 141 in gnuplot/src/Makefile.am I am no Apple expert, so I cannot say what goes wrong with the generation of this file in mac os. A workaround would be to manually generate this file : cd gnuplot/src/qtterminal uic -o ui_QtGnuplotSettings QtGnuplotSettings.ui the same goes for moc_* files. If you can sort out these build system issues, I believe that the Qt terminal should work on Mac os without code changes. Jérôme |