pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors/abiword



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Mar 26 02:36:02 UTC 2020

Modified Files:
        pkgsrc/editors/abiword: distinfo
Added Files:
        pkgsrc/editors/abiword/patches: patch-src_wp_ap_gtk_ap__UnixApp.cpp

Log Message:
Avoid C++11 UDL


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 pkgsrc/editors/abiword/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/abiword/distinfo
diff -u pkgsrc/editors/abiword/distinfo:1.80 pkgsrc/editors/abiword/distinfo:1.81
--- pkgsrc/editors/abiword/distinfo:1.80        Wed Nov 27 16:01:09 2019
+++ pkgsrc/editors/abiword/distinfo     Thu Mar 26 02:36:02 2020
@@ -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.cp
 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

Added files:

Index: pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp
diff -u /dev/null pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp:1.1
--- /dev/null   Thu Mar 26 02:36:02 2020
+++ pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp  Thu Mar 26 02:36:02 2020
@@ -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;
+ }



Home | Main Index | Thread Index | Old Index