From owner-svn-ports-head@freebsd.org Sat Jan 20 23:52:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4566ECE5BC; Sat, 20 Jan 2018 23:52:38 +0000 (UTC) (envelope-from jhale@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 A09B370BF5; Sat, 20 Jan 2018 23:52:38 +0000 (UTC) (envelope-from jhale@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 E8AA523684; Sat, 20 Jan 2018 23:52:37 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0KNqbtl087329; Sat, 20 Jan 2018 23:52:37 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0KNqbbC087328; Sat, 20 Jan 2018 23:52:37 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201801202352.w0KNqbbC087328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 20 Jan 2018 23:52:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459557 - head/finance/aqbanking/files X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: head/finance/aqbanking/files X-SVN-Commit-Revision: 459557 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.25 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: Sat, 20 Jan 2018 23:52:38 -0000 Author: jhale Date: Sat Jan 20 23:52:37 2018 New Revision: 459557 URL: https://svnweb.freebsd.org/changeset/ports/459557 Log: Fix build with clang 6 hbcixml.cpp:67:37: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] MYNAME " v1.99 (part of AqHBCI v"AQHBCI_VERSION_STRING")\n"\ Reported by: pkg-fallout Added: head/finance/aqbanking/files/ head/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp (contents, props changed) Added: head/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp Sat Jan 20 23:52:37 2018 (r459557) @@ -0,0 +1,15 @@ +Fix build with clang 6. +hbcixml.cpp:67:37: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] + MYNAME " v1.99 (part of AqHBCI v"AQHBCI_VERSION_STRING")\n"\ + +--- src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp.orig 2018-01-20 23:43:27 UTC ++++ src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp +@@ -64,7 +64,7 @@ using namespace std; + + #define MYNAME "hbcixml2" + #define PRG_VERSION_INFO \ +- MYNAME " v1.99 (part of AqHBCI v"AQHBCI_VERSION_STRING")\n"\ ++ MYNAME " v1.99 (part of AqHBCI v" AQHBCI_VERSION_STRING ")\n"\ + "(c) 2005 Martin Preuss\n" \ + "This program is free software licensed under GPL.\n"\ + "See COPYING for details.\n"