From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 26 20:20:02 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9C69106566C for ; Sat, 26 Dec 2009 20:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B768A8FC1B for ; Sat, 26 Dec 2009 20:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBQKK2L6064901 for ; Sat, 26 Dec 2009 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBQKK2PQ064883; Sat, 26 Dec 2009 20:20:02 GMT (envelope-from gnats) Date: Sat, 26 Dec 2009 20:20:02 GMT Message-Id: <200912262020.nBQKK2PQ064883@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Naram Qashat Cc: Subject: Re: ports/140007: [repocopy] devel/gdb6 to devel/gdb66 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Naram Qashat List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2009 20:20:03 -0000 The following reply was made to PR ports/140007; it has been noted by GNATS. From: Naram Qashat To: Li-Wen Hsu Cc: bug-followup@FreeBSD.org, mi@aldan.algebra.com Subject: Re: ports/140007: [repocopy] devel/gdb6 to devel/gdb66 Date: Sat, 26 Dec 2009 15:12:56 -0500 This is a multi-part message in MIME format. --------------070900030701080305080700 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Li-Wen Hsu wrote: > On Sun, Dec 27, 2009 at 02:50:26 +0800, Li-Wen Hsu wrote: >> Hello, >> Could you provide the patch for update devel/gdb6 to >> devel/gdb66 ? Then we are ready for repocopy. > > Sorry about the typo, what I meant was a patch for updating devel/gdb6 > to GDB 6.8. Sure thing, attached is a patch for devel/gdb6 to update it to GDB 6.8. It removes pkg-plist (there are only 2 files left) and files/itcl33-patch (not needed without Insight). I also set myself as the maintainer, but have CC'd the maintainer of the current devel/gdb6 to see if there are any objections. --------------070900030701080305080700 Content-Type: text/plain; name="devel-gdb6.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="devel-gdb6.patch" diff -ruN /usr/ports/devel/gdb6/Makefile /kirby/shared/ports/gdb6/Makefile --- /usr/ports/devel/gdb6/Makefile 2009-09-11 12:42:46.000000000 -0400 +++ /kirby/shared/ports/gdb6/Makefile 2009-12-26 14:45:08.000000000 -0500 @@ -7,19 +7,14 @@ # PORTNAME= gdb -PORTVERSION= 6.6 -PORTREVISION= 1 +PORTVERSION= 6.8 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU:S,$,:gdb,} \ - http://aldan.algebra.com/~mi/:gdbtk -MASTER_SITE_SUBDIR=gdb/:gdb -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:gdb +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR=gdb -MAINTAINER= mi@aldan.algebra.com +MAINTAINER= cyberbotx@cyberbotx.com COMMENT= GNU GDB of newer version than comes with the system -OPTIONS= INSIGHT "Build the Tcl/Tk GUI (experimental!)" off - USE_BZIP2= yes USE_GMAKE= yes USE_GETTEXT= yes @@ -33,42 +28,15 @@ CFLAGS+= -DRL_NO_COMPAT EXCLUDE= dejagnu expect readline sim texinfo intl EXTRACT_AFTER_ARGS=| ${TAR} -xf - ${EXCLUDE:S/^/--exclude /} -VER= ${PORTVERSION:S/.//} -PLIST_SUB= VER=${VER} -MAN1= gdb${VER}.1 +VER= ${PORTVERSION:S/.//} +MAN1= gdb${VER}.1 + +PLIST_FILES= bin/gdb${VER} bin/gdbtui${VER} #ONLY_FOR_ARCHS= i386 amd64 # untested elsewhere, might work .include -.if defined(WITH_INSIGHT) -LIB_DEPENDS= itk:${PORTSDIR}/x11-toolkits/itk -RUN_DEPENDS= ${LOCALBASE}/lib/iwidgets:${PORTSDIR}/x11-toolkits/iwidgets -DISTFILES+= gdbtk-6.6${EXTRACT_SUFX}:gdbtk -PLIST_SUB+= INSIGHT='' -EXTRA_PATCHES= ${FILESDIR}/itcl33-patch -CONFIGURE_ARGS+=--enable-gdbtk \ - --with-tclconfig=${LOCALBASE}/lib/tcl8.4 \ - --with-tclinclude=${LOCALBASE}/include/tcl8.4/generic \ - --with-tkconfig=${LOCALBASE}/lib/tk8.4 \ - --with-tkinclude=${LOCALBASE}/include/tk8.4/generic \ - --with-itclconfig=${LOCALBASE}/lib/itcl3.3 \ - --with-itkconfig=${LOCALBASE}/lib/itk3.3 - -pre-everything:: - # - # The Tk-based GUI (Insight) is patched to work with [incr tcl] - # version 3.3 and is currently experimental. Bug reports should - # be accompanied by patches. - # - -pre-configure: - ${MKDIR} ${WRKSRC}/itcl/generic - ${LN} -s ${LOCALBASE}/include/it*3.3/*.h ${WRKSRC}/itcl/generic/ -.else -PLIST_SUB+= INSIGHT='@comment ' -.endif - .if ${ARCH} == "amd64" CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .endif @@ -86,21 +54,5 @@ ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${PREFIX}/bin/gdb${VER} ${LN} ${PREFIX}/bin/gdb${VER} ${PREFIX}/bin/gdbtui${VER} ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 ${MAN1PREFIX}/man/man1/gdb${VER}.1 -.if defined(WITH_INSIGHT) - ${LN} ${PREFIX}/bin/gdb${VER} ${PREFIX}/bin/insight - ${MKDIR} ${PREFIX}/share/redhat/gui - ${CP} -p ${WRKSRC}/libgui/library/*.tcl \ - ${WRKSRC}/libgui/library/tclIndex \ - ${PREFIX}/share/redhat/gui/ - ${MKDIR} ${PREFIX}/lib/insight1.0 - ${CP} -Rp ${WRKSRC}/gdb/gdbtk/library/*.tcl \ - ${WRKSRC}/gdb/gdbtk/library/*.itcl \ - ${WRKSRC}/gdb/gdbtk/library/*.ith \ - ${WRKSRC}/gdb/gdbtk/library/*.itb \ - ${WRKSRC}/gdb/gdbtk/library/help \ - ${WRKSRC}/gdb/gdbtk/library/images* \ - ${WRKSRC}/gdb/gdbtk/library/tclIndex \ - ${PREFIX}/lib/insight1.0 -.endif .include diff -ruN /usr/ports/devel/gdb6/distinfo /kirby/shared/ports/gdb6/distinfo --- /usr/ports/devel/gdb6/distinfo 2007-06-27 13:31:13.000000000 -0400 +++ /kirby/shared/ports/gdb6/distinfo 2009-12-26 14:20:56.000000000 -0500 @@ -1,6 +1,3 @@ -MD5 (gdb-6.6.tar.bz2) = a4df41d28dd514d64e8ccbfe125fd9a6 -SHA256 (gdb-6.6.tar.bz2) = 6e602987298db5ddb479bbb84ce653eabd9c304957a49552245f65cdc70d43bd -SIZE (gdb-6.6.tar.bz2) = 14535755 -MD5 (gdbtk-6.6.tar.bz2) = deb691fe9c05dfefcf2f66653be702a0 -SHA256 (gdbtk-6.6.tar.bz2) = 7dbbcb530f59ad93fd1566c38a29c4ff682243948297549ac37161427bdba9d8 -SIZE (gdbtk-6.6.tar.bz2) = 845174 +MD5 (gdb-6.8.tar.bz2) = c9da266b884fb8fa54df786dfaadbc7a +SHA256 (gdb-6.8.tar.bz2) = eedffd586bf41cf2ae2f77e6819545d6eb1e5062052320a27332fdfaaebdf818 +SIZE (gdb-6.8.tar.bz2) = 15581509 diff -ruN /usr/ports/devel/gdb6/files/itcl33-patch /kirby/shared/ports/gdb6/files/itcl33-patch --- /usr/ports/devel/gdb6/files/itcl33-patch 2007-06-28 18:04:31.000000000 -0400 +++ /kirby/shared/ports/gdb6/files/itcl33-patch 1969-12-31 19:00:00.000000000 -0500 @@ -1,189 +0,0 @@ ---- gdb/gdbtk/library/tfind_args.tcl Sun Feb 6 19:19:42 2000 -+++ gdb/gdbtk/library/tfind_args.tcl Wed May 17 00:11:49 2006 -@@ -29,9 +29,10 @@ - # ---------------------------------------------------------------------- - --itcl_class TfindArgs { -+itcl::class TfindArgs { - # ------------------------------------------------------------------ - # CONSTRUCTOR - create new tfind arguments dialog - # ------------------------------------------------------------------ -- constructor {config} { -+ constructor args { -+ eval configure $args - # - # Create a window with the same name as this object ---- gdb/gdbtk/library/ehandler.itb Tue Oct 15 17:19:51 2002 -+++ gdb/gdbtk/library/ehandler.itb Wed May 17 00:12:55 2006 -@@ -23,5 +23,5 @@ - - # invoke event handlers -- foreach w [itcl_info objects -isa GDBEventHandler] { -+ foreach w [itcl::find objects -isa GDBEventHandler] { - dbug I "posting event \"$handler\" to \"$w\"" - if {[catch {$w $handler $event}]} { ---- gdb/gdbtk/library/managedwin.itb Fri Aug 27 19:13:14 2004 -+++ gdb/gdbtk/library/managedwin.itb Wed May 17 00:13:32 2006 -@@ -76,5 +76,5 @@ - itcl::body ManagedWin::window_instance {ins} { - set win_instance $ins -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - debug "$obj ManagedWin::_wname" - $obj window_name "" -@@ -134,5 +134,5 @@ - - # call the reconfig method for each object -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[catch {$obj reconfig} msg]} { - dbug W "reconfig failed for $obj - $msg" -@@ -148,5 +148,5 @@ - itcl::body ManagedWin::shutdown {} { - set activeWins {} -- foreach win [itcl_info objects -isa ManagedWin] { -+ foreach win [itcl::find objects -isa ManagedWin] { - if {![$win isa ModalDialog] && ![$win _ignore_on_save]} { - set g [wm geometry [winfo toplevel [namespace tail $win]]] -@@ -221,5 +221,5 @@ - if {!$force} { - # check all windows for one of this type -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[$obj isa $class]} { - $obj reveal -@@ -364,5 +364,5 @@ - debug "$win" - set res "" -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[$obj isa $win]} { - lappend res $obj ---- libgui/library/balloon.tcl Mon Feb 10 04:21:40 2003 -+++ libgui/library/balloon.tcl Thu Jun 28 15:39:09 2007 -@@ -8,34 +8,34 @@ - # * Likewise, balloon positioning on Windows is a hack. - --itcl_class Balloon { -+itcl::class Balloon { - # Name of associated global variable which should be set whenever - # the help is shown. -- public variable {} -+ public variable variable {} - - # Name of associated toplevel. Private variable. -- protected _top {} -+ protected variable _top {} - - # This is non-empty if there is an after script pending. Private - # method. -- protected _after_id {} -+ protected variable _after_id {} - - # This is an array mapping window name to help text. -- protected _help_text -+ protected variable _help_text - - # This is an array mapping window name to notification proc. -- protected _notifiers -+ protected variable _notifiers - - # This is set to the name of the parent widget whenever the mouse is - # in a widget with balloon help. -- protected _active {} -+ protected variable _active {} - - # This is true when we're already calling a notification proc. - # Private variable. -- protected _in_notifier 0 -+ protected variable _in_notifier 0 - - # This holds the parent of the most recently entered widget. It is - # used to determine when the user is moving through a toolbar. - # Private variable. -- protected _recent_parent {} -+ protected variable _recent_parent {} - - constructor {top} { ---- libgui/library/cframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/cframe.tcl Thu Jun 28 15:39:50 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey . - --itcl_class Checkframe { -+itcl::class Checkframe { - inherit Widgetframe - -@@ -14,5 +14,5 @@ - # trace when the variable changes (or is deleted). Private - # variable. -- protected _saved_variable {} -+ protected variable _saved_variable {} - - # The checkbutton variable. -@@ -45,5 +45,5 @@ - # This holds a list of all widgets which should be immune to - # enabling/disabling. Private variable. -- protected _avoid {} -+ protected variable _avoid {} - - constructor {config} { ---- libgui/library/lframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/lframe.tcl Thu Jun 28 15:32:04 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey . - --itcl_class Labelledframe { -+itcl::class Labelledframe { - inherit Widgetframe - ---- libgui/library/multibox.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/multibox.tcl Thu Jun 28 15:39:58 2007 -@@ -7,5 +7,5 @@ - # * Should support itemcget, itemconfigure. - --itcl_class Multibox { -+itcl::class Multibox { - # The selection mode. - public selectmode browse { -@@ -20,5 +20,5 @@ - # This is a list of all the listbox widgets we've created. Private - # variable. -- protected _listboxen {} -+ protected variable _listboxen {} - - # Tricky: take the class bindings for the Listbox widget and turn ---- libgui/library/sendpr.tcl Tue Feb 5 18:16:14 2002 -+++ libgui/library/sendpr.tcl Thu Jun 28 15:32:04 2007 -@@ -14,5 +14,5 @@ - defarray SENDPR_state - --itcl_class Sendpr { -+itcl::class Sendpr { - inherit Ide_window - ---- libgui/library/ventry.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/ventry.tcl Thu Jun 28 15:32:04 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey . - --itcl_class Validated_entry { -+itcl::class Validated_entry { - # The validation command. It is passed the contents of the entry. - # It should throw an error if there is a problem; the error text ---- libgui/library/wframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/wframe.tcl Thu Jun 28 15:40:07 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey . - --itcl_class Widgetframe { -+itcl::class Widgetframe { - # Where to put the widget. For now, we don't support many anchors. - # Augment as you like. -@@ -15,5 +15,5 @@ - # The name of the widget to put on the frame. This is set by some - # subclass calling the _add method. Private variable. -- protected _widget {} -+ protected variable _widget {} - - constructor {config} { diff -ruN /usr/ports/devel/gdb6/pkg-plist /kirby/shared/ports/gdb6/pkg-plist --- /usr/ports/devel/gdb6/pkg-plist 2007-06-27 13:31:13.000000000 -0400 +++ /kirby/shared/ports/gdb6/pkg-plist 1969-12-31 19:00:00.000000000 -0500 @@ -1,260 +0,0 @@ -bin/gdb%%VER%% -bin/gdbtui%%VER%% -%%INSIGHT%%bin/insight -%%INSIGHT%%share/redhat/gui/advice.tcl -%%INSIGHT%%share/redhat/gui/balloon.tcl -%%INSIGHT%%share/redhat/gui/bbox.tcl -%%INSIGHT%%share/redhat/gui/bgerror.tcl -%%INSIGHT%%share/redhat/gui/bindings.tcl -%%INSIGHT%%share/redhat/gui/canvas.tcl -%%INSIGHT%%share/redhat/gui/center.tcl -%%INSIGHT%%share/redhat/gui/cframe.tcl -%%INSIGHT%%share/redhat/gui/combobox.tcl -%%INSIGHT%%share/redhat/gui/debug.tcl -%%INSIGHT%%share/redhat/gui/def.tcl -%%INSIGHT%%share/redhat/gui/font.tcl -%%INSIGHT%%share/redhat/gui/gensym.tcl -%%INSIGHT%%share/redhat/gui/gettext.tcl -%%INSIGHT%%share/redhat/gui/hooks.tcl -%%INSIGHT%%share/redhat/gui/internet.tcl -%%INSIGHT%%share/redhat/gui/lframe.tcl -%%INSIGHT%%share/redhat/gui/list.tcl -%%INSIGHT%%share/redhat/gui/looknfeel.tcl -%%INSIGHT%%share/redhat/gui/menu.tcl -%%INSIGHT%%share/redhat/gui/mono.tcl -%%INSIGHT%%share/redhat/gui/multibox.tcl -%%INSIGHT%%share/redhat/gui/pane.tcl -%%INSIGHT%%share/redhat/gui/panedwindow.tcl -%%INSIGHT%%share/redhat/gui/parse_args.tcl -%%INSIGHT%%share/redhat/gui/path.tcl -%%INSIGHT%%share/redhat/gui/pkgIndex.tcl -%%INSIGHT%%share/redhat/gui/postghost.tcl -%%INSIGHT%%share/redhat/gui/prefs.tcl -%%INSIGHT%%share/redhat/gui/print.tcl -%%INSIGHT%%share/redhat/gui/sendpr.tcl -%%INSIGHT%%share/redhat/gui/toolbar.tcl -%%INSIGHT%%share/redhat/gui/topbind.tcl -%%INSIGHT%%share/redhat/gui/ulset.tcl -%%INSIGHT%%share/redhat/gui/ventry.tcl -%%INSIGHT%%share/redhat/gui/wframe.tcl -%%INSIGHT%%share/redhat/gui/wingrab.tcl -%%INSIGHT%%share/redhat/gui/tclIndex -%%INSIGHT%%@dirrm share/redhat/gui -%%INSIGHT%%@dirrm share/redhat -%%INSIGHT%%lib/insight1.0/about.tcl -%%INSIGHT%%lib/insight1.0/actiondlg.tcl -%%INSIGHT%%lib/insight1.0/attachdlg.itb -%%INSIGHT%%lib/insight1.0/attachdlg.ith -%%INSIGHT%%lib/insight1.0/blockframe.itb -%%INSIGHT%%lib/insight1.0/blockframe.ith -%%INSIGHT%%lib/insight1.0/bpwin.itb -%%INSIGHT%%lib/insight1.0/bpwin.ith -%%INSIGHT%%lib/insight1.0/browserwin.itb -%%INSIGHT%%lib/insight1.0/browserwin.ith -%%INSIGHT%%lib/insight1.0/console.itb -%%INSIGHT%%lib/insight1.0/console.ith -%%INSIGHT%%lib/insight1.0/cspref.itb -%%INSIGHT%%lib/insight1.0/cspref.ith -%%INSIGHT%%lib/insight1.0/debugwin.itb -%%INSIGHT%%lib/insight1.0/debugwin.ith -%%INSIGHT%%lib/insight1.0/download.itb -%%INSIGHT%%lib/insight1.0/download.ith -%%INSIGHT%%lib/insight1.0/editor.tcl -%%INSIGHT%%lib/insight1.0/ehandler.itb -%%INSIGHT%%lib/insight1.0/ehandler.ith -%%INSIGHT%%lib/insight1.0/embeddedwin.ith -%%INSIGHT%%lib/insight1.0/gdbevent.itb -%%INSIGHT%%lib/insight1.0/gdbevent.ith -%%INSIGHT%%lib/insight1.0/gdbmenubar.itcl -%%INSIGHT%%lib/insight1.0/gdbtoolbar.itcl -%%INSIGHT%%lib/insight1.0/gdbwin.ith -%%INSIGHT%%lib/insight1.0/globalpref.itb -%%INSIGHT%%lib/insight1.0/globalpref.ith -%%INSIGHT%%lib/insight1.0/help/breakpoint.html -%%INSIGHT%%lib/insight1.0/help/browser.html -%%INSIGHT%%lib/insight1.0/help/console.html -%%INSIGHT%%lib/insight1.0/help/debug.html -%%INSIGHT%%lib/insight1.0/help/gbl_pref.html -%%INSIGHT%%lib/insight1.0/help/help.html -%%INSIGHT%%lib/insight1.0/help/images/browser1.png -%%INSIGHT%%lib/insight1.0/help/images/browser2.png -%%INSIGHT%%lib/insight1.0/help/images/frame_info.gif -%%INSIGHT%%lib/insight1.0/help/images/insightbwr.png -%%INSIGHT%%lib/insight1.0/help/images/mem_menu.gif -%%INSIGHT%%lib/insight1.0/help/images/mem_popup.gif -%%INSIGHT%%lib/insight1.0/help/images/mem_pref.gif -%%INSIGHT%%lib/insight1.0/help/images/reg.png -%%INSIGHT%%lib/insight1.0/help/images/reg_menu.png -%%INSIGHT%%lib/insight1.0/help/images/src_bal.gif -%%INSIGHT%%lib/insight1.0/help/images/src_bp_bal.gif -%%INSIGHT%%lib/insight1.0/help/images/src_bpop.gif -%%INSIGHT%%lib/insight1.0/help/images/src_menu.gif -%%INSIGHT%%lib/insight1.0/help/images/src_pop.gif -%%INSIGHT%%lib/insight1.0/help/images/src_stat.gif -%%INSIGHT%%lib/insight1.0/help/images/src_thread.gif -%%INSIGHT%%lib/insight1.0/help/images/src_toolbar.gif -%%INSIGHT%%lib/insight1.0/help/images/watch.png -%%INSIGHT%%lib/insight1.0/help/index.html -%%INSIGHT%%lib/insight1.0/help/license.html -%%INSIGHT%%lib/insight1.0/help/locals.html -%%INSIGHT%%lib/insight1.0/help/memory.html -%%INSIGHT%%lib/insight1.0/help/register.html -%%INSIGHT%%lib/insight1.0/help/session.html -%%INSIGHT%%lib/insight1.0/help/source.html -%%INSIGHT%%lib/insight1.0/help/src_pref.html -%%INSIGHT%%lib/insight1.0/help/stack.html -%%INSIGHT%%lib/insight1.0/help/target.html -%%INSIGHT%%lib/insight1.0/help/thread.html -%%INSIGHT%%lib/insight1.0/help/trace/console.html -%%INSIGHT%%lib/insight1.0/help/trace/gbl_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/help.html -%%INSIGHT%%lib/insight1.0/help/trace/index.toc -%%INSIGHT%%lib/insight1.0/help/trace/license.html -%%INSIGHT%%lib/insight1.0/help/trace/locals.html -%%INSIGHT%%lib/insight1.0/help/trace/memory.html -%%INSIGHT%%lib/insight1.0/help/trace/reg_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/register.html -%%INSIGHT%%lib/insight1.0/help/trace/source.html -%%INSIGHT%%lib/insight1.0/help/trace/src_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/stack.html -%%INSIGHT%%lib/insight1.0/help/trace/target.html -%%INSIGHT%%lib/insight1.0/help/trace/tdump.html -%%INSIGHT%%lib/insight1.0/help/trace/tp.html -%%INSIGHT%%lib/insight1.0/help/trace/tracedlg.html -%%INSIGHT%%lib/insight1.0/help/trace/watch.html -%%INSIGHT%%lib/insight1.0/help/watch.html -%%INSIGHT%%lib/insight1.0/helpviewer.tcl -%%INSIGHT%%lib/insight1.0/images/Movie_off.gif -%%INSIGHT%%lib/insight1.0/images/Movie_on.gif -%%INSIGHT%%lib/insight1.0/images/bottom.gif -%%INSIGHT%%lib/insight1.0/images/bp.gif -%%INSIGHT%%lib/insight1.0/images/check.gif -%%INSIGHT%%lib/insight1.0/images/console.gif -%%INSIGHT%%lib/insight1.0/images/continue.gif -%%INSIGHT%%lib/insight1.0/images/down.gif -%%INSIGHT%%lib/insight1.0/images/edit.gif -%%INSIGHT%%lib/insight1.0/images/finish.gif -%%INSIGHT%%lib/insight1.0/images/gdbtk_icon.gif -%%INSIGHT%%lib/insight1.0/images/help.gif -%%INSIGHT%%lib/insight1.0/images/home.gif -%%INSIGHT%%lib/insight1.0/images/icons.txt -%%INSIGHT%%lib/insight1.0/images/insight.gif -%%INSIGHT%%lib/insight1.0/images/less.gif -%%INSIGHT%%lib/insight1.0/images/memory.gif -%%INSIGHT%%lib/insight1.0/images/more.gif -%%INSIGHT%%lib/insight1.0/images/next.gif -%%INSIGHT%%lib/insight1.0/images/next_check.gif -%%INSIGHT%%lib/insight1.0/images/next_frame.gif -%%INSIGHT%%lib/insight1.0/images/next_hit.gif -%%INSIGHT%%lib/insight1.0/images/next_line.gif -%%INSIGHT%%lib/insight1.0/images/nexti.gif -%%INSIGHT%%lib/insight1.0/images/open.gif -%%INSIGHT%%lib/insight1.0/images/prev_hit.gif -%%INSIGHT%%lib/insight1.0/images/reg.gif -%%INSIGHT%%lib/insight1.0/images/rewind.gif -%%INSIGHT%%lib/insight1.0/images/run.gif -%%INSIGHT%%lib/insight1.0/images/run_expt.gif -%%INSIGHT%%lib/insight1.0/images/src.gif -%%INSIGHT%%lib/insight1.0/images/stack.gif -%%INSIGHT%%lib/insight1.0/images/step.gif -%%INSIGHT%%lib/insight1.0/images/stepi.gif -%%INSIGHT%%lib/insight1.0/images/stop.gif -%%INSIGHT%%lib/insight1.0/images/tdump.gif -%%INSIGHT%%lib/insight1.0/images/tp.gif -%%INSIGHT%%lib/insight1.0/images/up.gif -%%INSIGHT%%lib/insight1.0/images/vars.gif -%%INSIGHT%%lib/insight1.0/images/watch.gif -%%INSIGHT%%lib/insight1.0/images/watch_movie.gif -%%INSIGHT%%lib/insight1.0/images2/Movie_off.gif -%%INSIGHT%%lib/insight1.0/images2/Movie_on.gif -%%INSIGHT%%lib/insight1.0/images2/bottom.gif -%%INSIGHT%%lib/insight1.0/images2/bp.gif -%%INSIGHT%%lib/insight1.0/images2/check.gif -%%INSIGHT%%lib/insight1.0/images2/console.gif -%%INSIGHT%%lib/insight1.0/images2/continue.gif -%%INSIGHT%%lib/insight1.0/images2/down.gif -%%INSIGHT%%lib/insight1.0/images2/edit.gif -%%INSIGHT%%lib/insight1.0/images2/finish.gif -%%INSIGHT%%lib/insight1.0/images2/function.gif -%%INSIGHT%%lib/insight1.0/images2/gdbtk_icon.gif -%%INSIGHT%%lib/insight1.0/images2/help.gif -%%INSIGHT%%lib/insight1.0/images2/home.gif -%%INSIGHT%%lib/insight1.0/images2/icons.txt -%%INSIGHT%%lib/insight1.0/images2/insight.gif -%%INSIGHT%%lib/insight1.0/images2/less.gif -%%INSIGHT%%lib/insight1.0/images2/memory.gif -%%INSIGHT%%lib/insight1.0/images2/more.gif -%%INSIGHT%%lib/insight1.0/images2/next.gif -%%INSIGHT%%lib/insight1.0/images2/next_check.gif -%%INSIGHT%%lib/insight1.0/images2/next_frame.gif -%%INSIGHT%%lib/insight1.0/images2/next_hit.gif -%%INSIGHT%%lib/insight1.0/images2/next_line.gif -%%INSIGHT%%lib/insight1.0/images2/nexti.gif -%%INSIGHT%%lib/insight1.0/images2/open.gif -%%INSIGHT%%lib/insight1.0/images2/prev_hit.gif -%%INSIGHT%%lib/insight1.0/images2/reg.gif -%%INSIGHT%%lib/insight1.0/images2/rewind.gif -%%INSIGHT%%lib/insight1.0/images2/run.gif -%%INSIGHT%%lib/insight1.0/images2/run_expt.gif -%%INSIGHT%%lib/insight1.0/images2/src.gif -%%INSIGHT%%lib/insight1.0/images2/stack.gif -%%INSIGHT%%lib/insight1.0/images2/step.gif -%%INSIGHT%%lib/insight1.0/images2/stepi.gif -%%INSIGHT%%lib/insight1.0/images2/stop.gif -%%INSIGHT%%lib/insight1.0/images2/target.gif -%%INSIGHT%%lib/insight1.0/images2/tdump.gif -%%INSIGHT%%lib/insight1.0/images2/tp.gif -%%INSIGHT%%lib/insight1.0/images2/up.gif -%%INSIGHT%%lib/insight1.0/images2/vars.gif -%%INSIGHT%%lib/insight1.0/images2/watch.gif -%%INSIGHT%%lib/insight1.0/images2/watch_movie.gif -%%INSIGHT%%lib/insight1.0/interface.tcl -%%INSIGHT%%lib/insight1.0/ipc.tcl -%%INSIGHT%%lib/insight1.0/ipcpref.itb -%%INSIGHT%%lib/insight1.0/ipcpref.ith -%%INSIGHT%%lib/insight1.0/kod.itb -%%INSIGHT%%lib/insight1.0/kod.ith -%%INSIGHT%%lib/insight1.0/locals.tcl -%%INSIGHT%%lib/insight1.0/main.tcl -%%INSIGHT%%lib/insight1.0/managedwin.itb -%%INSIGHT%%lib/insight1.0/managedwin.ith -%%INSIGHT%%lib/insight1.0/mempref.itb -%%INSIGHT%%lib/insight1.0/mempref.ith -%%INSIGHT%%lib/insight1.0/memwin.itb -%%INSIGHT%%lib/insight1.0/memwin.ith -%%INSIGHT%%lib/insight1.0/modal.tcl -%%INSIGHT%%lib/insight1.0/pluginwin.itcl -%%INSIGHT%%lib/insight1.0/prefs.tcl -%%INSIGHT%%lib/insight1.0/process.itb -%%INSIGHT%%lib/insight1.0/process.ith -%%INSIGHT%%lib/insight1.0/regwin.itb -%%INSIGHT%%lib/insight1.0/regwin.ith -%%INSIGHT%%lib/insight1.0/session.tcl -%%INSIGHT%%lib/insight1.0/srcbar.itcl -%%INSIGHT%%lib/insight1.0/srcpref.itb -%%INSIGHT%%lib/insight1.0/srcpref.ith -%%INSIGHT%%lib/insight1.0/srctextwin.itb -%%INSIGHT%%lib/insight1.0/srctextwin.ith -%%INSIGHT%%lib/insight1.0/srcwin.itb -%%INSIGHT%%lib/insight1.0/srcwin.ith -%%INSIGHT%%lib/insight1.0/stackwin.itb -%%INSIGHT%%lib/insight1.0/stackwin.ith -%%INSIGHT%%lib/insight1.0/targetselection.itb -%%INSIGHT%%lib/insight1.0/targetselection.ith -%%INSIGHT%%lib/insight1.0/tdump.tcl -%%INSIGHT%%lib/insight1.0/tfind_args.tcl -%%INSIGHT%%lib/insight1.0/toplevelwin.ith -%%INSIGHT%%lib/insight1.0/tracedlg.tcl -%%INSIGHT%%lib/insight1.0/tty.tcl -%%INSIGHT%%lib/insight1.0/util.tcl -%%INSIGHT%%lib/insight1.0/vartree.itb -%%INSIGHT%%lib/insight1.0/vartree.ith -%%INSIGHT%%lib/insight1.0/warning.tcl -%%INSIGHT%%lib/insight1.0/watch.tcl -%%INSIGHT%%lib/insight1.0/tclIndex -%%INSIGHT%%@dirrm lib/insight1.0/images2 -%%INSIGHT%%@dirrm lib/insight1.0/images -%%INSIGHT%%@dirrm lib/insight1.0/help/trace -%%INSIGHT%%@dirrm lib/insight1.0/help/images -%%INSIGHT%%@dirrm lib/insight1.0/help -%%INSIGHT%%@dirrm lib/insight1.0 --------------070900030701080305080700--