From owner-svn-ports-head@freebsd.org Mon Sep 10 15:32:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8E14109357B; Mon, 10 Sep 2018 15:32:25 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95D6D86E34; Mon, 10 Sep 2018 15:32:25 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90DFE248A; Mon, 10 Sep 2018 15:32:25 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8AFWPB7046896; Mon, 10 Sep 2018 15:32:25 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8AFWPSR046895; Mon, 10 Sep 2018 15:32:25 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201809101532.w8AFWPSR046895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 10 Sep 2018 15:32:25 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/net-im: centerim centerim-devel X-SVN-Commit-Revision: 479433 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2018 15:32:26 -0000 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