summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2020-03-26 02:36:02 +0000
committerjoerg <joerg@pkgsrc.org>2020-03-26 02:36:02 +0000
commitd4cb9d7095558bb519aafd65bbbc72d781095427 (patch)
tree35e980c398330676ec3a79a8f230bbe820a5a361 /editors
parent2899bb537c00f2e2666c8c87b3a72a0a9df40328 (diff)
downloadpkgsrc-d4cb9d7095558bb519aafd65bbbc72d781095427.tar.gz
Avoid C++11 UDL
Diffstat (limited to 'editors')
-rw-r--r--editors/abiword/distinfo3
-rw-r--r--editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp13
2 files changed, 15 insertions, 1 deletions
diff --git a/editors/abiword/distinfo b/editors/abiword/distinfo
index c4d3f13c928..d30b53e876e 100644
--- a/editors/abiword/distinfo
+++ b/editors/abiword/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.80 2019/11/27 16:01:09 nia Exp $
+$NetBSD: distinfo,v 1.81 2020/03/26 02:36:02 joerg Exp $
SHA1 (abiword-3.0.4.tar.gz) = eb6c18e649fe8ca185c8d09f2c7869a27c9942db
RMD160 (abiword-3.0.4.tar.gz) = cd7eaf6c89b44f094c70b1700158b3ef2844c5a4
@@ -27,3 +27,4 @@ SHA1 (patch-src_af_util_xp_ut__mbtowc.cpp) = cf7078a6bfdf9ac9b30478d11d9d3a81a95
SHA1 (patch-src_af_util_xp_ut__misc.cpp) = f552ecbb87490355d8e74218dd59fd3961f1af5d
SHA1 (patch-src_af_xap_xp_enchant__checker.cpp) = 5ad3b8bb4e186e998d7e8930247534c9f058c534
SHA1 (patch-src_text_fmt_xp_fv__FrameEdit.h) = 684310bf9aece4ce72d004dfae9a4b4b6ca69570
+SHA1 (patch-src_wp_ap_gtk_ap__UnixApp.cpp) = 0269d41c71db3501afc0f06ba1d21cd68f3f9304
diff --git a/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp b/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp
new file mode 100644
index 00000000000..1aa62efec2a
--- /dev/null
+++ b/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_wp_ap_gtk_ap__UnixApp.cpp,v 1.1 2020/03/26 02:36:02 joerg Exp $
+
+--- src/wp/ap/gtk/ap_UnixApp.cpp.orig 2020-03-25 14:42:03.508260820 +0000
++++ src/wp/ap/gtk/ap_UnixApp.cpp
+@@ -863,7 +863,7 @@ static bool is_so (const char *file) {
+ if (len < (strlen(G_MODULE_SUFFIX) + 2)) // this is ".so" and at least one char for the filename
+ return false;
+ const char *suffix = file+(len-3);
+- if(0 == strcmp (suffix, "."G_MODULE_SUFFIX))
++ if(0 == strcmp (suffix, "." G_MODULE_SUFFIX))
+ return true;
+ return false;
+ }