diff options
author | seb <seb@pkgsrc.org> | 2003-03-10 23:50:48 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-03-10 23:50:48 +0000 |
commit | ed7bae196b878d6106681555083ccee785cfd1ab (patch) | |
tree | cb5d785552efaa2dc5aa5f2392fef8b23555ff3d /devel/gdb/Makefile | |
parent | c99afed5b19aeb2d7782314a40d0ff5f53b7d4e8 (diff) | |
download | pkgsrc-ed7bae196b878d6106681555083ccee785cfd1ab.tar.gz |
Update to gdb version 5.3.
Extract of changes below.
*** Changes in GDB 5.3:
* GNU/Linux shared library multi-threaded performance improved.
* ``gdbserver'' now supports multi-threaded applications on some targets
* GDB now supports C/C++ preprocessor macros.
* Multi-arched targets.
DEC Alpha (partial) alpha*-*-*
DEC VAX (partial) vax-*-*
NEC V850 v850-*-*
National Semiconductor NS32000 (partial) ns32k-*-*
Motorola 68000 (partial) m68k-*-*
Motorola MCORE mcore-*-*
* New targets.
Fujitsu FRV architecture added by Red Hat frv*-*-*
* New native configurations
Alpha NetBSD alpha*-*-netbsd*
SH NetBSD sh*-*-netbsdelf*
MIPS NetBSD mips*-*-netbsd*
UltraSPARC NetBSD sparc64-*-netbsd*
* OBSOLETE configurations and files
Mitsubishi D30V d30v-*-*
OS/9000 i[34]86-*-os9k
IBM AIX PS/2 i[3456]86-*-aix
Fujitsu FR30 fr30-*-elf*
Motorola Delta 88000 running Sys V m88k-motorola-sysv or delta88
Argonaut Risc Chip (ARC) arc-*-*
i386 running Mach 3.0 i[3456]86-*-mach3*
i386 running Mach i[3456]86-*-mach*
i386 running OSF/1 i[3456]86-*osf1mk*
HP/Apollo 68k Family m68*-apollo*-sysv*,
m68*-apollo*-bsd*,
m68*-hp-bsd*, m68*-hp-hpux*
I960 with MON960 i960-*-coff
* OBSOLETE languages
CHILL, a Pascal like language used by telecommunications companies.
* REMOVED configurations and files
AMD 29k family via UDI a29k-amd-udi, udi29k
A29K VxWorks a29k-*-vxworks
AMD 29000 embedded, using EBMON a29k-none-none
AMD 29000 embedded with COFF a29k-none-coff
AMD 29000 embedded with a.out a29k-none-aout
testsuite/gdb.hp/gdb.threads-hp/ directory
* New command "set max-user-call-depth <nnn>"
* Changes in FreeBSD/i386 native debugging.
Support for the "generate-core-file" has been added.
* New commands "dump", "append", and "restore".
* Improved "next/step" support on multi-processor Alpha Tru64.
Diffstat (limited to 'devel/gdb/Makefile')
-rw-r--r-- | devel/gdb/Makefile | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/devel/gdb/Makefile b/devel/gdb/Makefile index 339a6fd577f..338c58e2a7c 100644 --- a/devel/gdb/Makefile +++ b/devel/gdb/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2002/08/07 14:18:26 jschauma Exp $ +# $NetBSD: Makefile,v 1.6 2003/03/10 23:50:48 seb Exp $ # -DISTNAME= gdb-5.2.1 +DISTNAME= gdb-5.3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=gdb/} @@ -9,13 +9,22 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/gdb/gdb.html COMMENT= symbolic debugger for multiple language frontends -MAKE_ENV+= CPPFLAGS= -INFO_FILES= gdb.info gdbint.info stabs.info bfd.info -INFO_FILES+= mmalloc.info standards.info +GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +USE_PKGLOCALEDIR= YES +USE_LIBTOOL= YES +USE_GMAKE= YES +LIBTOOL_OVERRIDE= ${WRKSRC}/bfd/libtool ${WRKSRC}/opcodes/libtool +REPLACE_LOCALEDIR_PATTERNS+= Make-in INSTALL_TARGET= install install-info -do-configure: - cd ${WRKSRC}; ./configure --prefix=${PREFIX} +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "SunOS" +# Work around a bug in gdb's configure +CONFIGURE_ENV+= ac_cv_header_curses_h=yes +.endif + +.include "../../devel/gettext-lib/buildlink2.mk" .include "../../mk/texinfo.mk" .include "../../mk/bsd.pkg.mk" |