Date: Sat, 25 Aug 2018 15:31:48 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478051 - head/sysutils/searchmonkey Message-ID: <201808251531.w7PFVm5V077525@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sat Aug 25 15:31:48 2018 New Revision: 478051 URL: https://svnweb.freebsd.org/changeset/ports/478051 Log: sysutils/searchmonkey: Fix build with Clang 6 mainwindow.cpp:784:7: error: declaration of variable 'autoSettingsReset' with deduced type 'auto' requires an initializer auto autoSettingsReset asr(sui); // dtor calls sui->reset() ^ mainwindow.cpp:784:24: error: expected ';' at end of declaration auto autoSettingsReset asr(sui); // dtor calls sui->reset() ^ http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/searchmonkey-2.0.0_2.log Modified: head/sysutils/searchmonkey/Makefile Modified: head/sysutils/searchmonkey/Makefile ============================================================================== --- head/sysutils/searchmonkey/Makefile Sat Aug 25 14:50:53 2018 (r478050) +++ head/sysutils/searchmonkey/Makefile Sat Aug 25 15:31:48 2018 (r478051) @@ -14,6 +14,7 @@ COMMENT= Search using regexes for file names and text LICENSE= GPLv3+ USES= qmake dos2unix qt:4 zip +USE_CXXSTD= c++98 DOS2UNIX_GLOB= *.cpp *.h USE_QT= corelib gui moc_build rcc_build uic_build
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808251531.w7PFVm5V077525>