Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Sep 2018 15:32:25 +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: r479433 - in head/net-im: centerim centerim-devel
Message-ID:  <201809101532.w8AFWPSR046895@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Mon Sep 10 15:32:24 2018
New Revision: 479433
URL: https://svnweb.freebsd.org/changeset/ports/479433

Log:
  net-im/centerim{,-devel}: Fix build with Clang 6
  
  In file included from rsshook.cc:32:
  ../../src/icqface.h:248:50: error: cannot combine with previous 'bool' declaration specifier
          bool findresults(const imsearchparams &sp, bool auto = false);
                                                          ^
  
  ... and more if one gets past this
  
  http://beefy12.nyi.freebsd.org/data/head-amd64-default/p479076_s338486/logs/errors/centerim-4.22.10_5.log
  http://beefy12.nyi.freebsd.org/data/head-amd64-default/p479076_s338486/logs/errors/centerim-devel-4.22.10.11_7.log
  
  PR:		230904
  Approved by:	frank@altpeter.de (maintainer timeout, 2 weeks)

Modified:
  head/net-im/centerim-devel/Makefile
  head/net-im/centerim/Makefile

Modified: head/net-im/centerim-devel/Makefile
==============================================================================
--- head/net-im/centerim-devel/Makefile	Mon Sep 10 15:26:04 2018	(r479432)
+++ head/net-im/centerim-devel/Makefile	Mon Sep 10 15:32:24 2018	(r479433)
@@ -18,6 +18,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libcurl.so:ftp/curl
 
 USES=		iconv gmake ncurses perl5 pkgconfig python:2.7,run shebangfix ssl
+USE_CXXSTD=	gnu++98
 USE_PERL5=	run
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-ssl --with-openssl

Modified: head/net-im/centerim/Makefile
==============================================================================
--- head/net-im/centerim/Makefile	Mon Sep 10 15:26:04 2018	(r479432)
+++ head/net-im/centerim/Makefile	Mon Sep 10 15:32:24 2018	(r479433)
@@ -19,6 +19,7 @@ LIB_DEPENDS=	libassuan.so:security/libassuan \
 		libgpg-error.so:security/libgpg-error
 
 USES=		iconv gmake ncurses pkgconfig python shebangfix ssl
+USE_CXXSTD=	gnu++98
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 CXXFLAGS+=	-I${LOCALBASE}/include



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