On Thu, Jul 07, 2016 at 12:34:44PM +0200, Jean-Marc Lasgouttes wrote: > Le 07/07/2016 à 09:39, Jean-Marc Lasgouttes a écrit : > >M'y fault indeed. I'll fix it ASAP. > > What about this?
Thanks, this solves the problem on solaris but still doesn't take into account the fact that one could be using an own compiled version of Qt rather than the system one, so that qtchooser should not be used. For example, debian jessie has Qt 5.3.2 but I have installed Qt 5.7.0 in /usr/local/qt/5.7.0. Without this patch I get: ... checking for QT_CORE... yes checking for QT_FRONTEND... yes checking whether Qt uses the X Window system... yes checking for moc... moc -qt=qt5 checking for uic... uic -qt=qt5 checking for rcc... rcc -qt=qt5 ... === The following minor problems have been detected by configure. === Please check the messages below before running 'make'. === (see the section 'Problems' in the INSTALL file) == The found moc compiler is for Qt 5.3.2 but the Qt library version is 5.7.0. While, after applying the patch: ... checking for QT_CORE... yes checking for QT_FRONTEND... yes checking whether Qt uses the X Window system... yes checking for moc... /usr/local/qt/5.7.0//bin/moc checking for uic... /usr/local/qt/5.7.0//bin/uic checking for rcc... /usr/local/qt/5.7.0//bin/rcc ... === The following minor problems have been detected by configure. === Please check the messages below before running 'make'. === (see the section 'Problems' in the INSTALL file) == The found moc compiler is for Qt Unknown options: q, t, =, q, t, 5. but the Qt library version is 5.7.0. -- Enrico