FreeBSD Bugzilla – Attachment 138718 Details for
Bug 184796
[MAINTAINER] Upgrade devel/gdb to 7.6.2 and other small things
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
gdb.diff
gdb.diff (text/x-patch), 6.72 KB, created by
luca.pizzamiglio
on 2014-01-23 22:27:00 UTC
(
hide
)
Description:
gdb.diff
Filename:
MIME Type:
Creator:
luca.pizzamiglio
Created:
2014-01-23 22:27:00 UTC
Size:
6.72 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 339677) >+++ Makefile (working copy) >@@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= gdb >-PORTVERSION= 7.6.1 >-PORTREVISION= 1 >+PORTVERSION= 7.6.2 > CATEGORIES= devel > MASTER_SITES= GNU > >@@ -13,12 +12,13 @@ > LICENSE= GPLv3 > > USE_BZIP2= yes >+USES= iconv gmake > USE_CSTD= gnu89 >-USES= iconv gmake > GNU_CONFIGURE= yes > CONFIGURE_ENV= CONFIGURED_M4=m4 CONFIGURED_BISON=byacc > CONFIGURE_ARGS= --program-suffix=${PORTVERSION:S/.//g} \ > --with-gdb-datadir=${PREFIX}/share/gdb${PORTVERSION:S/.//g} \ >+ --with-separate-debug-dir=/usr/lib/debug \ > ${ICONV_CONFIGURE_ARG} \ > --without-libunwind-ia64 \ > --enable-targets=all >@@ -25,40 +25,43 @@ > CFLAGS:= ${CFLAGS:C/ +$//} # blanks at EOL creep in sometimes > CFLAGS+= -DRL_NO_COMPAT > EXCLUDE= dejagnu expect sim texinfo intl >+EXTRACT_AFTER_ARGS= ${EXCLUDE:S/^/--exclude /} >+ > VER= ${PORTVERSION:S/.//g} > PLIST_SUB= VER=${VER} >-EXTRACT_AFTER_ARGS= ${EXCLUDE:S/^/--exclude /} > > ONLY_FOR_ARCHS= i386 amd64 powerpc powerpc64 # untested elsewhere, might work > >-OPTIONS_DEFINE= DEBUG EXPAT PYTHON THREADS TUI GDB_LINK >+OPTIONS_DEFINE= DEBUG EXPAT GDB_LINK PYTHON THREADS TUI >+ >+OPTIONS_DEFAULT= THREADS TUI GDB_LINK PORT_READLINE >+ >+OPTIONS_SINGLE= READLINE > OPTIONS_SINGLE_READLINE= BASE_READLINE BUNDLED_READLINE PORT_READLINE >-OPTIONS_SINGLE= READLINE >+ >+GDB_LINK_DESC= Create the gdb link > BASE_READLINE_DESC= from base system(EXPERIMENTAL) > BUNDLED_READLINE_DESC= from gdb distfile > PORT_READLINE_DESC= from devel/readline port >-GDB_LINK_DESC= Create the gdb link > TUI_DESC= Text User Interface enabled >-OPTIONS_DEFAULT= THREADS TUI GDB_LINK PORT_READLINE > >-# Activating the plist >-OPTIONS_SUB=yes >+OPTIONS_SUB= yes > >+BASE_READLINE_USES= readline >+BASE_READLINE_CFLAGS= -D_rl_echoing_p=readline_echoing_p >+BUNDLED_READLINE_CONFIGURE_OFF= --with-system-readline > DEBUG_CFLAGS= -g > EXPAT_CONFIGURE_ON= --with-expat=yes > EXPAT_CONFIGURE_OFF= --without-expat >-EXPAT_LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 >-TUI_CONFIGURE_ENABLE= tui >+EXPAT_LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 > PYTHON_CONFIGURE_ON= --with-python=${PYTHON_CMD} > PYTHON_CONFIGURE_OFF= --without-python > PORT_READLINE_USES= readline:port >-BASE_READLINE_USES= readline >-BASE_READLINE_CFLAGS= -D_rl_echoing_p=readline_echoing_p >-BUNDLED_READLINE_CONFIGURE_OFF= --with-system-readline >+TUI_CONFIGURE_ENABLE= tui > > .include <bsd.port.options.mk> > >-.if empty(PORT_OPTIONS:MBUNDLED_READLINE) >+.if ! ${PORT_OPTIONS:MBUNDLED_READLINE} > EXCLUDE+= readline > .endif > >@@ -67,7 +70,8 @@ > .endif > > .if ${PORT_OPTIONS:MTHREADS} >-EXTRA_PATCHES= ${FILESDIR}/extrapatch-gdb-configure.tgt ${FILESDIR}/extrapatch-gdb-Makefile.in >+EXTRA_PATCHES= ${FILESDIR}/extrapatch-gdb-configure.tgt \ >+ ${FILESDIR}/extrapatch-gdb-Makefile.in > .endif > > .if ${ARCH} == "amd64" >@@ -75,31 +79,37 @@ > .endif > > post-patch: >- @${REINPLACE_CMD} -e 's/$$/ [GDB v${PORTVERSION} for FreeBSD]/' \ >+ @${REINPLACE_CMD} -e 's|$$| [GDB v${PORTVERSION} for FreeBSD]|' \ > ${WRKSRC}/gdb/version.in >+ > .if ${PORT_OPTIONS:MTHREADS} > @${CP} ${FILESDIR}/fbsd-threads.c ${WRKSRC}/gdb/ > .endif > > do-install: >- ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${STAGEDIR}${PREFIX}/bin/gdb${VER} >- ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/gdb${VER}.1 >+ ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb \ >+ ${STAGEDIR}${PREFIX}/bin/gdb${VER} >+ ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 \ >+ ${STAGEDIR}${MAN1PREFIX}/man/man1/gdb${VER}.1 >+ > .if ${PORT_OPTIONS:MTUI} > ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdbtui${VER} > .endif >+ > .if ${PORT_OPTIONS:MGDB_LINK} > ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdb > .endif >+ > .if ${PORT_OPTIONS:MPYTHON} > (cd ${WRKSRC}/gdb; ${GMAKE} DESTDIR=${STAGEDIR} install-python ) >- (cd ${WRKSRC}/gdb/data-directory; ${GMAKE} DESTDIR=${STAGEDIR} install-python ) >+ (cd ${WRKSRC}/gdb/data-directory ; \ >+ ${GMAKE} DESTDIR=${STAGEDIR} install-python ) > .endif > >-post-install: > .if ${PORT_OPTIONS:MPYTHON} >- ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/*.py* >- ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/command/*.py* >- ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/function/*.py* >+. for f in gdb gdb/command gdb/function >+ @(cd ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/${f} ; ${CHMOD} 644 *.py* ) >+. endfor > .endif > > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 339677) >+++ distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (gdb-7.6.1.tar.bz2) = e3dfa38a14a5457f9b8b26f7b5080ba5491bd10ae4d69bfe357cea87b7d162e4 >-SIZE (gdb-7.6.1.tar.bz2) = 24338919 >+SHA256 (gdb-7.6.2.tar.bz2) = 2f6a0e2ce1c66c9dedeb7f58a8d1298ad602ddcdaf15d23104e1f7832b96d0e8 >+SIZE (gdb-7.6.2.tar.bz2) = 24269334 >Index: files/patch-sigev >=================================================================== >--- files/patch-sigev (revision 0) >+++ files/patch-sigev (working copy) >@@ -0,0 +1,59 @@ >+--- gdb/common/signals.c.orig 2013-01-01 07:32:54.000000000 +0100 >++++ gdb/common/signals.c 2013-11-25 16:12:56.000000000 +0100 >+@@ -46,6 +46,12 @@ >+ # endif >+ #endif >+ >++#ifdef __FreeBSD__ >++# ifndef SIGLIBRT >++# define SIGLIBRT 33 /* Older versions do not define the constant */ >++# endif >++#endif >++ >+ /* This table must match in order and size the signals in enum >+ gdb_signal. */ >+ >+@@ -334,6 +340,11 @@ >+ return GDB_SIGNAL_INFO; >+ #endif >+ >++#if defined (SIGLIBRT) >++ if ( hostsig == SIGLIBRT ) >++ return GDB_SIGNAL_FBSD_LIBRT; >++#endif >++ >+ #if defined (REALTIME_LO) >+ if (hostsig >= REALTIME_LO && hostsig < REALTIME_HI) >+ { >+@@ -591,6 +602,11 @@ >+ return SIGINFO; >+ #endif >+ >++#if defined (SIGLIBRT) >++ case GDB_SIGNAL_FBSD_LIBRT: >++ return SIGLIBRT; >++#endif >++ >+ default: >+ #if defined (REALTIME_LO) >+ retsig = 0; >+--- gdb/infrun.c.orig 2013-08-30 17:58:55.000000000 +0200 >++++ gdb/infrun.c 2013-11-22 16:12:58.000000000 +0100 >+@@ -7291,6 +7291,8 @@ >+ signal_print[GDB_SIGNAL_WINCH] = 0; >+ signal_stop[GDB_SIGNAL_PRIO] = 0; >+ signal_print[GDB_SIGNAL_PRIO] = 0; >++ signal_stop[GDB_SIGNAL_FBSD_LIBRT] = 0; >++ signal_print[GDB_SIGNAL_FBSD_LIBRT] = 0; >+ >+ /* These signals are used internally by user-level thread >+ implementations. (See signal(5) on Solaris.) Like the above >+--- include/gdb/signals.def.orig 2013-01-01 07:41:30.000000000 +0100 >++++ include/gdb/signals.def 2013-11-25 16:13:42.000000000 +0100 >+@@ -197,4 +197,5 @@ >+ /* If you are adding a new signal, add it just above this comment. */ >+ >+ /* Last and unused enum value, for sizing arrays, etc. */ >+-SET (GDB_SIGNAL_LAST, 151, NULL, "GDB_SIGNAL_MAGIC") >++SET (GDB_SIGNAL_FBSD_LIBRT, 151, "SIGLIBRT", "GDB_SIGNAL_FBSD_LIBRT") >++SET (GDB_SIGNAL_LAST, 152, NULL, "GDB_SIGNAL_MAGIC") >\ No newline at end of file
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 184796
:
138717
| 138718