From owner-svn-ports-head@freebsd.org Sun Sep 2 14:05:49 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 950FCFF0410; Sun, 2 Sep 2018 14:05:49 +0000 (UTC) (envelope-from bland@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 3DF517A114; Sun, 2 Sep 2018 14:05:49 +0000 (UTC) (envelope-from bland@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 345751A44C; Sun, 2 Sep 2018 14:05:49 +0000 (UTC) (envelope-from bland@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w82E5nQO013282; Sun, 2 Sep 2018 14:05:49 GMT (envelope-from bland@FreeBSD.org) Received: (from bland@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w82E5ms6013281; Sun, 2 Sep 2018 14:05:48 GMT (envelope-from bland@FreeBSD.org) Message-Id: <201809021405.w82E5ms6013281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bland set sender to bland@FreeBSD.org using -f From: Alexander Nedotsukov Date: Sun, 2 Sep 2018 14:05:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478791 - head/devel/glademm/files X-SVN-Group: ports-head X-SVN-Commit-Author: bland X-SVN-Commit-Paths: head/devel/glademm/files X-SVN-Commit-Revision: 478791 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: Sun, 02 Sep 2018 14:05:49 -0000 Author: bland Date: Sun Sep 2 14:05:48 2018 New Revision: 478791 URL: https://svnweb.freebsd.org/changeset/ports/478791 Log: Fix build with Clang 6 PR: 230905 Added: head/devel/glademm/files/patch-src_Cxx.cc (contents, props changed) head/devel/glademm/files/patch-src_glade--.cc (contents, props changed) Added: head/devel/glademm/files/patch-src_Cxx.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/glademm/files/patch-src_Cxx.cc Sun Sep 2 14:05:48 2018 (r478791) @@ -0,0 +1,11 @@ +--- src/Cxx.cc.orig 2018-08-26 06:39:26 UTC ++++ src/Cxx.cc +@@ -894,7 +894,7 @@ void Cxx::WriteCreation(SystemFile &f,File_type tp) + if (!Configuration.author_email.empty()) + f << " by " << Configuration.author_email; + f << '\n'; +- f << comment << " using "GLADEMM_NAME"\n"; ++ f << comment << " using " GLADEMM_NAME "\n"; + } + + Added: head/devel/glademm/files/patch-src_glade--.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/glademm/files/patch-src_glade--.cc Sun Sep 2 14:05:48 2018 (r478791) @@ -0,0 +1,20 @@ +--- src/glade--.cc.orig 2018-08-26 06:40:08 UTC ++++ src/glade--.cc +@@ -393,7 +393,7 @@ int main(int argc,char **argv) + break; + case 'h': Configuration.header_suffix=optarg; + break; +- case 'V': std::cout<< "glademm V"VERSION" (glade to Gtk-- converter)\n"; ++ case 'V': std::cout<< "glademm V" VERSION " (glade to Gtk-- converter)\n"; + return 0; + break; + case 'v': Configuration.verbose++; break; +@@ -487,7 +487,7 @@ int main(int argc,char **argv) + "\t--baseclass\tderive from base class (for class parameters)\n" + "\t--libglade\tgenerate code skeleton for a libglade-- application.\n" + "\t--libglade-option\tgenerate infrastructure for libglade without using it.\n" +- "\t--version\tprints 'glademm V"VERSION"'\n"; ++ "\t--version\tprints 'glademm V" VERSION "'\n"; + return 1; + } + if (argc-optind!=1) goto usage;