Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Jan 2018 23:52:37 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459557 - head/finance/aqbanking/files
Message-ID:  <201801202352.w0KNqbbC087328@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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<martin@libchipcard.de>\n" \
+   "This program is free software licensed under GPL.\n"\
+   "See COPYING for details.\n"



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