svn commit: r478051 - head/sysutils/searchmonkey

Tobias Kortkamp tobik at FreeBSD.org
Sat Aug 25 15:31:49 UTC 2018


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
 


More information about the svn-ports-head mailing list