Module Name:    src
Committed By:   skrll
Date:           Mon Feb  6 10:46:36 UTC 2012

Modified Files:
        src/external/gpl3/gdb/dist/gdb/config/alpha: nbsd.mh
        src/external/gpl3/gdb/dist/gdb/config/arm: nbsdelf.mh
        src/external/gpl3/gdb/dist/gdb/config/i386: nbsd64.mh nbsdelf.mh
        src/external/gpl3/gdb/dist/gdb/config/m68k: nbsdelf.mh
        src/external/gpl3/gdb/dist/gdb/config/mips: nbsd.mh
        src/external/gpl3/gdb/dist/gdb/config/pa: nbsd.mh
        src/external/gpl3/gdb/dist/gdb/config/powerpc: nbsd.mh ppc64-nbsd.mh
        src/external/gpl3/gdb/dist/gdb/config/sh: nbsd.mh
        src/external/gpl3/gdb/dist/gdb/config/sparc: nbsd64.mh nbsdelf.mh
        src/external/gpl3/gdb/dist/gdb/config/vax: nbsdelf.mh

Log Message:
Add nbsd-pthread.o.

OK releng@ 3 ack 0 nak.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh
cvs rdiff -u -r1.1.1.1 -r1.2 \
    src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh
cvs rdiff -u -r1.2 -r1.3 \
    src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh
cvs rdiff -u -r1.2 -r1.3 \
    src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh
cvs rdiff -u -r1.1 -r1.2 \
    src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh
cvs rdiff -u -r1.2 -r1.3 \
    src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh \
    src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh

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

Modified files:

Index: src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh:1.2	Sun Sep 25 16:30:25 2011
+++ src/external/gpl3/gdb/dist/gdb/config/alpha/nbsd.mh	Mon Feb  6 10:46:34 2012
@@ -1,4 +1,5 @@
 # Host: NetBSD/alpha
-NATDEPFILES= fork-child.o inf-ptrace.o alphabsd-nat.o bsd-kvm.o nbsd-nat.o
+NATDEPFILES= fork-child.o inf-ptrace.o alphabsd-nat.o bsd-kvm.o nbsd-nat.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh:1.2	Sun Sep 25 16:30:25 2011
+++ src/external/gpl3/gdb/dist/gdb/config/arm/nbsdelf.mh	Mon Feb  6 10:46:35 2012
@@ -1,2 +1,3 @@
 # Host: NetBSD/arm
-NATDEPFILES= fork-child.o inf-ptrace.o corelow.o nbsd-nat.o armnbsd-nat.o bsd-kvm.o
+NATDEPFILES= fork-child.o inf-ptrace.o corelow.o nbsd-nat.o armnbsd-nat.o \
+	bsd-kvm.o nbsd-thread.o

Index: src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh:1.2	Sun Sep 25 16:30:25 2011
+++ src/external/gpl3/gdb/dist/gdb/config/i386/nbsd64.mh	Mon Feb  6 10:46:35 2012
@@ -1,5 +1,6 @@
 # Host: NetBSD/amd64
 NATDEPFILES= fork-child.o inf-ptrace.o \
-	amd64-nat.o amd64bsd-nat.o nbsd-nat.o amd64nbsd-nat.o bsd-kvm.o
+	amd64-nat.o amd64bsd-nat.o nbsd-nat.o amd64nbsd-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh:1.1.1.1 src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh:1.2
--- src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh:1.1.1.1	Sat Sep 24 20:14:57 2011
+++ src/external/gpl3/gdb/dist/gdb/config/i386/nbsdelf.mh	Mon Feb  6 10:46:35 2012
@@ -1,5 +1,6 @@
 # Host: NetBSD/i386 ELF
 NATDEPFILES= fork-child.o inf-ptrace.o \
-	nbsd-nat.o i386bsd-nat.o i386nbsd-nat.o bsd-kvm.o
+	nbsd-nat.o i386bsd-nat.o i386nbsd-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh:1.2	Sun Sep 25 16:30:25 2011
+++ src/external/gpl3/gdb/dist/gdb/config/m68k/nbsdelf.mh	Mon Feb  6 10:46:35 2012
@@ -1,4 +1,5 @@
 # Host: NetBSD/m68k ELF
-NATDEPFILES= nbsd-nat.o m68kbsd-nat.o bsd-kvm.o fork-child.o inf-ptrace.o
+NATDEPFILES= nbsd-nat.o m68kbsd-nat.o bsd-kvm.o fork-child.o inf-ptrace.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh:1.2	Sun Sep 25 16:30:25 2011
+++ src/external/gpl3/gdb/dist/gdb/config/mips/nbsd.mh	Mon Feb  6 10:46:35 2012
@@ -1,2 +1,3 @@
 # Host: NetBSD/mips
-NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o mipsnbsd-nat.o
+NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o mipsnbsd-nat.o \
+	nbsd-thread.o

Index: src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh:1.1.1.1 src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh:1.2
--- src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh:1.1.1.1	Sat Sep 24 20:14:57 2011
+++ src/external/gpl3/gdb/dist/gdb/config/pa/nbsd.mh	Mon Feb  6 10:46:35 2012
@@ -1,2 +1,3 @@
 # Host: NetBSD/hppa
-NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o hppanbsd-nat.o
+NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o hppanbsd-nat.o \
+	nbsd-thread.o

Index: src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh:1.2	Sun Sep 25 16:30:26 2011
+++ src/external/gpl3/gdb/dist/gdb/config/powerpc/nbsd.mh	Mon Feb  6 10:46:35 2012
@@ -1,4 +1,5 @@
 # Host: NetBSD/powerpc
-NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o ppcnbsd-nat.o bsd-kvm.o
+NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o ppcnbsd-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh:1.1 src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh:1.2
--- src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh:1.1	Sun Oct 30 00:15:24 2011
+++ src/external/gpl3/gdb/dist/gdb/config/powerpc/ppc64-nbsd.mh	Mon Feb  6 10:46:35 2012
@@ -1,4 +1,5 @@
 # Host: NetBSD/powerpc64
-NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o ppcnbsd-nat.o bsd-kvm.o
+NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o ppcnbsd-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh:1.2	Sun Sep 25 16:30:26 2011
+++ src/external/gpl3/gdb/dist/gdb/config/sh/nbsd.mh	Mon Feb  6 10:46:36 2012
@@ -1,2 +1,3 @@
 # Host: NetBSD/sh
-NATDEPFILES= inf-ptrace.o fork-child.o nbsd-nat.o shnbsd-nat.o
+NATDEPFILES= inf-ptrace.o fork-child.o nbsd-nat.o shnbsd-nat.o \
+	nbsd-thread.o

Index: src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh:1.2	Sun Sep 25 16:30:26 2011
+++ src/external/gpl3/gdb/dist/gdb/config/sparc/nbsd64.mh	Mon Feb  6 10:46:36 2012
@@ -1,5 +1,6 @@
 # Host: NetBSD/sparc64
 NATDEPFILES= fork-child.o inf-ptrace.o \
-	nbsd-nat.o sparc64nbsd-nat.o sparc-nat.o bsd-kvm.o
+	nbsd-nat.o sparc64nbsd-nat.o sparc-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm
Index: src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh:1.2	Mon Oct 24 18:42:41 2011
+++ src/external/gpl3/gdb/dist/gdb/config/sparc/nbsdelf.mh	Mon Feb  6 10:46:36 2012
@@ -1,5 +1,6 @@
 # Host: NetBSD/sparc ELF
 NATDEPFILES= fork-child.o inf-ptrace.o \
-	nbsd-nat.o sparcnbsd-nat.o sparc-nat.o bsd-kvm.o
+	nbsd-nat.o sparcnbsd-nat.o sparc-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Index: src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh
diff -u src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh:1.2 src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh:1.3
--- src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh:1.2	Sun Sep 25 16:30:26 2011
+++ src/external/gpl3/gdb/dist/gdb/config/vax/nbsdelf.mh	Mon Feb  6 10:46:36 2012
@@ -1,5 +1,6 @@
 # Host: NetBSD/vax ELF
 NATDEPFILES= fork-child.o inf-ptrace.o \
-	nbsd-nat.o vaxbsd-nat.o bsd-kvm.o
+	nbsd-nat.o vaxbsd-nat.o bsd-kvm.o \
+	nbsd-thread.o
 
 LOADLIBES= -lkvm

Reply via email to