From owner-svn-ports-head@freebsd.org Mon Aug 27 19:59:12 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 DBE0C10948F0; Mon, 27 Aug 2018 19:59:11 +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 929338101D; Mon, 27 Aug 2018 19:59:11 +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 5736B224D5; Mon, 27 Aug 2018 19:59:11 +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 w7RJxBYK097835; Mon, 27 Aug 2018 19:59:11 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7RJxBKp097834; Mon, 27 Aug 2018 19:59:11 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201808271959.w7RJxBKp097834@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 27 Aug 2018 19:59:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478248 - head/devel/omniORB-4.1/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/omniORB-4.1/files X-SVN-Commit-Revision: 478248 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, 27 Aug 2018 19:59:12 -0000 Author: tobik Date: Mon Aug 27 19:59:10 2018 New Revision: 478248 URL: https://svnweb.freebsd.org/changeset/ports/478248 Log: devel/omniORB-4.1: Fix build with Clang 6 corbaOrb.cc:1374:13: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] "-ORBid "ORB_ID_STRING" (standard option)") {} ^ http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/omniORB41-4.1.7_2.log Added: head/devel/omniORB-4.1/files/patch-src_lib_omniORB_orbcore_corbaOrb.cc (contents, props changed) Added: head/devel/omniORB-4.1/files/patch-src_lib_omniORB_orbcore_corbaOrb.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/omniORB-4.1/files/patch-src_lib_omniORB_orbcore_corbaOrb.cc Mon Aug 27 19:59:10 2018 (r478248) @@ -0,0 +1,40 @@ +corbaOrb.cc:1374:13: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] + "-ORBid "ORB_ID_STRING" (standard option)") {} + ^ + +--- src/lib/omniORB/orbcore/corbaOrb.cc.orig 2018-08-27 19:52:14 UTC ++++ src/lib/omniORB/orbcore/corbaOrb.cc +@@ -1371,13 +1371,13 @@ class idHandler : public orbOptions::Handler { (public + orbOptions::Handler("id", + "id = " ORB_ID_STRING, + 1, +- "-ORBid "ORB_ID_STRING" (standard option)") {} ++ "-ORBid " ORB_ID_STRING " (standard option)") {} + + + void visit(const char* value,orbOptions::Source) throw (orbOptions::BadParam) { + + if (!isValidId(value)) { +- throw orbOptions::BadParam(key(),value,"id is not "ORB_ID_STRING); ++ throw orbOptions::BadParam(key(),value,"id is not " ORB_ID_STRING); + } + if( strcmp(value, myOrbId()) ) { + if( omniORB::trace(1) ) { +@@ -1501,7 +1501,7 @@ class poa_iiop_portHandler : public orbOptions::Handle + void visit(const char* value,orbOptions::Source) throw (orbOptions::BadParam) { + + throw orbOptions::BadParam(key(),value, +- "poa_iiop_port"POA_IIOP_IS_OBSOLETE); ++ "poa_iiop_port" POA_IIOP_IS_OBSOLETE); + } + + void dump(orbOptions::sequenceString& result) { +@@ -1520,7 +1520,7 @@ class poa_iiop_name_portHandler : public orbOptions::H + + void visit(const char* value,orbOptions::Source) throw (orbOptions::BadParam) { + throw orbOptions::BadParam(key(),value, +- "poa_iiop_name_port"POA_IIOP_IS_OBSOLETE); ++ "poa_iiop_name_port" POA_IIOP_IS_OBSOLETE); + } + + void dump(orbOptions::sequenceString& result) {