View | Details | Raw Unified | Return to bug 203661 | Differences between
and this patch

Collapse All | Expand All

(-)devel/gdb/Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	gdb
4
PORTNAME=	gdb
5
PORTVERSION=	7.10
5
PORTVERSION=	7.10
6
PORTREVISION=	3
6
PORTREVISION=	4
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	GNU
8
MASTER_SITES=	GNU
9
9
(-)devel/gdb/files/extrapatch-kgdb (+10 lines)
Lines 2-7 diff --git gdb/Makefile.in gdb/Makefile.in Link Here
2
index dfaa8a3..182d875 100644
2
index dfaa8a3..182d875 100644
3
--- gdb/Makefile.in
3
--- gdb/Makefile.in
4
+++ gdb/Makefile.in
4
+++ gdb/Makefile.in
5
@@ -207,7 +207,8 @@
6
 
7
 # Generated headers in the gnulib directory.  These must be listed
8
 # so that they are generated before other files are compiled.
9
-GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
10
+GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h \
11
+	$(GNULIB_BUILDDIR)/import/alloca.h @GNULIB_STDINT_H@
12
 
13
 #
14
 # CLI sub directory definitons
5
@@ -650,7 +650,8 @@ ALL_64_TARGET_OBS = \
15
@@ -650,7 +650,8 @@ ALL_64_TARGET_OBS = \
6
 	ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \
16
 	ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \
7
 	mips64obsd-tdep.o \
17
 	mips64obsd-tdep.o \
(-)devel/gdb/files/fbsd-threads.c (+1 lines)
Lines 766-771 fbsd_thread_wait (struct target_ops *ops, Link Here
766
  ret = beneath->to_wait (beneath, ptid, ourstatus, options);
766
  ret = beneath->to_wait (beneath, ptid, ourstatus, options);
767
  if (GET_PID(ret) >= 0 &&
767
  if (GET_PID(ret) >= 0 &&
768
    ( ourstatus->kind == TARGET_WAITKIND_STOPPED ||
768
    ( ourstatus->kind == TARGET_WAITKIND_STOPPED ||
769
      ourstatus->kind == TARGET_WAITKIND_VFORKED ||
769
      ourstatus->kind == TARGET_WAITKIND_FORKED ) )
770
      ourstatus->kind == TARGET_WAITKIND_FORKED ) )
770
    {
771
    {
771
      lwp = get_current_lwp (GET_PID(ret));
772
      lwp = get_current_lwp (GET_PID(ret));

Return to bug 203661