Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Sep 2018 14:10:26 +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: r478961 - head/net-im/vacuum-im
Message-ID:  <201809041410.w84EAQBR011916@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809041410.w84EAQBR011916>