summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2015-12-05 22:33:46 (GMT)
committerMark Brand <mabrand@mabrand.nl>2015-12-06 10:29:45 (GMT)
commit0fb74a36b79bbc1f1f27c6fc5d8bf605ac8baee4 (patch)
tree9cef3e9f362047daeb18b192608ce85bf239b948
parent99af3f72565c0e75e2115d8233e49d9b58a551f6 (diff)
downloadmxe-0fb74a36b79bbc1f1f27c6fc5d8bf605ac8baee4.zip
mxe-0fb74a36b79bbc1f1f27c6fc5d8bf605ac8baee4.tar.gz
mxe-0fb74a36b79bbc1f1f27c6fc5d8bf605ac8baee4.tar.bz2
gdb: update
-rw-r--r--src/gdb-1-fix-termcap.patch31
-rw-r--r--src/gdb.mk4
2 files changed, 2 insertions, 33 deletions
diff --git a/src/gdb-1-fix-termcap.patch b/src/gdb-1-fix-termcap.patch
deleted file mode 100644
index 1ec247d..0000000
--- a/src/gdb-1-fix-termcap.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-This file is part of MXE.
-See index.html for further information.
-
-diff --git a/gdb/windows-termcap.c b/gdb/windows-termcap.c
-index caafc47..809ae6d 100644
---- a/gdb/windows-termcap.c
-+++ b/gdb/windows-termcap.c
-@@ -19,9 +19,16 @@
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
--
- #include "defs.h"
--
-+#include "config.h"
-+
-+#if defined (HAVE_NCURSES_TERM_H)
-+#elif defined (HAVE_TERM_H)
-+#else
-+/* On MinGW, a real termcap library is usually not present. Stub versions
-+ of the termcap functions will be built from windows-termcap.c. Readline
-+ provides its own extern declarations when there's no termcap.h; do the
-+ same here for the termcap functions used in GDB. */
- #include <stdlib.h>
-
- /* -Wmissing-prototypes */
-@@ -74,3 +81,4 @@ tgoto (const char *cap, int col, int row)
- {
- return NULL;
- }
-+#endif
diff --git a/src/gdb.mk b/src/gdb.mk
index dc1a774..73dfc6e 100644
--- a/src/gdb.mk
+++ b/src/gdb.mk
@@ -2,8 +2,8 @@
# See index.html for further information.
PKG := gdb
-$(PKG)_VERSION := 7.9.1
-$(PKG)_CHECKSUM := cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40
+$(PKG)_VERSION := 7.10.1
+$(PKG)_CHECKSUM := 25c72f3d41c7c8554d61cacbeacd5f40993276d2ccdec43279ac546e3993d6d5
$(PKG)_SUBDIR := gdb-$($(PKG)_VERSION)
$(PKG)_FILE := gdb-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := http://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE)