aboutsummaryrefslogtreecommitdiff
path: root/finance/aqbanking
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2018-01-20 23:52:37 +0000
committerJason E. Hale <jhale@FreeBSD.org>2018-01-20 23:52:37 +0000
commit5e0df537c5a6a98d70765577d8bbcf893053b6f8 (patch)
treebf75cac024f310743fbad8d3a24c9b28f53dc63a /finance/aqbanking
parentebd334649f4511d67c0a58c2ba0c72529fee0221 (diff)
downloadports-5e0df537c5a6a98d70765577d8bbcf893053b6f8.tar.gz
ports-5e0df537c5a6a98d70765577d8bbcf893053b6f8.zip
Notes
Diffstat (limited to 'finance/aqbanking')
-rw-r--r--finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp b/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp
new file mode 100644
index 000000000000..023c380428a6
--- /dev/null
+++ b/finance/aqbanking/files/patch-src_plugins_backends_aqhbci_tools_hbcixml_hbcixml.cpp
@@ -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"