diff options
author | John Baldwin <jhb@FreeBSD.org> | 2015-04-29 13:53:45 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2015-04-29 13:53:45 +0000 |
commit | bc869246e9838943d99c2c0e3f2bda6c325a77d0 (patch) | |
tree | d9bb7f99a01d6552a99e35414062781ad97ef441 /devel/gdb/files/patch-gdb-gdb_wchar.h | |
parent | devel/onscripter: unbreak build against lang/lua53 (diff) |
Update to 7.9.
- Move changes that have been adopted upstream after 7.9 into extra patches
named after the commit to GDB's master branch. This includes previous
patches such as the signal trampoline detection fixes and XSAVE support
as well as well as new fixes such as fixing 'gcore' to not require procfs.
- The tui-io.c patch previously needed with new readline has been accepted
upstream.
- The remaining patches have been updated to apply cleanly.
- The threads target has been fixed to actually pass register requests for
LWP-backed threads down to the ptrace backends without detouring via
libthread_db which actually fixes AVX with threads.
PR: 199451
Differential Revision: https://reviews.freebsd.org/D2293
Approved by: bapt, luca.pizzamiglio@gmail.com (maintainer)
Notes
Notes:
svn path=/head/; revision=384978
Diffstat (limited to 'devel/gdb/files/patch-gdb-gdb_wchar.h')
-rw-r--r-- | devel/gdb/files/patch-gdb-gdb_wchar.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/devel/gdb/files/patch-gdb-gdb_wchar.h b/devel/gdb/files/patch-gdb-gdb_wchar.h index f70be80281e5..0123294af917 100644 --- a/devel/gdb/files/patch-gdb-gdb_wchar.h +++ b/devel/gdb/files/patch-gdb-gdb_wchar.h @@ -1,15 +1,17 @@ ---- gdb/gdb_wchar.h.orig 2014-06-05 10:44:18.914279516 +0200 -+++ gdb/gdb_wchar.h 2014-06-05 10:46:07.264279306 +0200 -@@ -56,7 +56,7 @@ +diff --git gdb/gdb_wchar.h gdb/gdb_wchar.h +index 868fe04..1311080 100644 +--- gdb/gdb_wchar.h ++++ gdb/gdb_wchar.h +@@ -59,7 +59,7 @@ iconvlist. */ - #if defined (HAVE_ICONV) && defined (HAVE_WCHAR_H) && defined (HAVE_BTOWC) \ + #if defined (HAVE_ICONV) && defined (HAVE_BTOWC) \ && (defined (__STDC_ISO_10646__) \ - || (defined (_LIBICONV_VERSION) && _LIBICONV_VERSION >= 0x108)) + || (!defined (LIBICONV_PLUG) && defined (_LIBICONV_VERSION) && _LIBICONV_VERSION >= 0x108)) - #include <wchar.h> - #include <wctype.h> -@@ -82,7 +82,7 @@ + typedef wchar_t gdb_wchar_t; + typedef wint_t gdb_wint_t; +@@ -82,7 +82,7 @@ typedef wint_t gdb_wint_t; #define INTERMEDIATE_ENCODING intermediate_encoding () const char *intermediate_encoding (void); |