pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/gdb



Module Name:    pkgsrc
Committed By:   mcf
Date:           Mon Oct 26 04:26:11 UTC 2020

Modified Files:
        pkgsrc/devel/gdb: Makefile distinfo
Removed Files:
        pkgsrc/devel/gdb/patches: patch-opcodes_i386-dis_c

Log Message:
gdb: remove incorrect patch

This patch originates from pkgsrc-wip in order to prevent clang
warnings for adding an integer to a string literal by converting
"foo" + x to &"foo"[x]. However, when gdb was updated to 7.9, the
ampersand was mistakenly dropped. The string literal was also
replaced with a variable, so there is no longer any reason for the
patch.

This caused the oappend function to be called with a char converted
to a pointer, which immediately crashes gdb whenever disassembly
is performed.


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 pkgsrc/devel/gdb/Makefile
cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/gdb/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/devel/gdb/patches/patch-opcodes_i386-dis_c

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

Modified files:

Index: pkgsrc/devel/gdb/Makefile
diff -u pkgsrc/devel/gdb/Makefile:1.74 pkgsrc/devel/gdb/Makefile:1.75
--- pkgsrc/devel/gdb/Makefile:1.74      Mon Oct 26 03:21:05 2020
+++ pkgsrc/devel/gdb/Makefile   Mon Oct 26 04:26:11 2020
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.74 2020/10/26 03:21:05 mcf Exp $
+# $NetBSD: Makefile,v 1.75 2020/10/26 04:26:11 mcf Exp $
 
 DISTNAME=      gdb-10.1
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GNU:=gdb/}
 

Index: pkgsrc/devel/gdb/distinfo
diff -u pkgsrc/devel/gdb/distinfo:1.36 pkgsrc/devel/gdb/distinfo:1.37
--- pkgsrc/devel/gdb/distinfo:1.36      Sat Oct 24 18:22:08 2020
+++ pkgsrc/devel/gdb/distinfo   Mon Oct 26 04:26:11 2020
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.36 2020/10/24 18:22:08 kamil Exp $
+$NetBSD: distinfo,v 1.37 2020/10/26 04:26:11 mcf Exp $
 
 SHA1 (gdb-10.1.tar.gz) = 5218b83c33acd27ec4e62690baaf555503fdccd5
 RMD160 (gdb-10.1.tar.gz) = 87163d96863e4923691f0c1bd34f58e30f2685e8
 SHA512 (gdb-10.1.tar.gz) = 41b50955f82780a1935294669a14eca40e58574ad4aa6d476903b729605f09930e5bb651b4de0c49b948d65fdf521a4b7f22c5d3b1f83dd6c9a15957c9d52370
 Size (gdb-10.1.tar.gz) = 40245323 bytes
 SHA1 (patch-gdb_doc_Makefile.in) = f7205fe715779e8aed05d230d43320286f74fdd0
-SHA1 (patch-opcodes_i386-dis_c) = 57b2b2ce85567faf112ec9f435b9aed0ffc943fb



Home | Main Index | Thread Index | Old Index