svn commit: r459557 - head/finance/aqbanking/files

Jason E. Hale jhale at FreeBSD.org
Sat Jan 20 23:52:38 UTC 2018


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 at libchipcard.de>\n" \
+   "This program is free software licensed under GPL.\n"\
+   "See COPYING for details.\n"


More information about the svn-ports-all mailing list