svn commit: r478961 - head/net-im/vacuum-im

Tobias Kortkamp tobik at FreeBSD.org
Tue Sep 4 14:10:26 UTC 2018


Author: tobik
Date: Tue Sep  4 14:10:25 2018
New Revision: 478961
URL: https://svnweb.freebsd.org/changeset/ports/478961

Log:
  net-im/vacuum-im: Fix build with Clang 6
  
  src/plugins/filemessagearchive/filemessagearchive.cpp:514:24: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
                  QFile log(dirPath+"/"LOG_FILE_NAME);
                                       ^
  
  ... and many more like these later
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p478648_s338416/logs/errors/vacuum-im-1.2.5.log

Modified:
  head/net-im/vacuum-im/Makefile

Modified: head/net-im/vacuum-im/Makefile
==============================================================================
--- head/net-im/vacuum-im/Makefile	Tue Sep  4 13:42:13 2018	(r478960)
+++ head/net-im/vacuum-im/Makefile	Tue Sep  4 14:10:25 2018	(r478961)
@@ -17,6 +17,7 @@ GH_ACCOUNT=	Vacuum-IM
 GH_PROJECT=	${PORTNAME}${PKGNAMESUFFIX}
 
 USES=		cmake qt:4
+USE_CXXSTD=	c++98
 USE_XORG=	xscrnsaver
 USE_LDCONFIG=	yes
 USE_QT=		gui xml qmake_build uic_build moc_build rcc_build \


More information about the svn-ports-all mailing list