head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.54 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.52 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.50 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.48 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.46 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.44 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.42 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.40 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.38 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.36 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.34 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.32 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.30 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.28 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.26 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.24 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.4.0.22 pkgsrc-2006Q2-base:1.4 pkgsrc-2006Q1:1.4.0.20 pkgsrc-2006Q1-base:1.4 pkgsrc-2005Q4:1.4.0.18 pkgsrc-2005Q4-base:1.4 pkgsrc-2005Q3:1.4.0.16 pkgsrc-2005Q3-base:1.4 pkgsrc-2005Q2:1.4.0.14 pkgsrc-2005Q2-base:1.4 pkgsrc-2005Q1:1.4.0.12 pkgsrc-2005Q1-base:1.4 pkgsrc-2004Q4:1.4.0.10 pkgsrc-2004Q4-base:1.4 pkgsrc-2004Q3:1.4.0.8 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.4.0.6 pkgsrc-2004Q2-base:1.4 pkgsrc-2004Q1:1.4.0.4 pkgsrc-2004Q1-base:1.4 pkgsrc-2003Q4:1.4.0.2 pkgsrc-2003Q4-base:1.4 netbsd-1-6:1.3.0.6 netbsd-1-6-RELEASE-base:1.3 pkgviews:1.3.0.2 pkgviews-base:1.3 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2 netbsd-1-5-PATCH001:1.2; locks; strict; comment @# @; 1.4 date 2002.10.15.03.37.01; author markd; state dead; branches; next 1.3; 1.3 date 2002.07.17.11.32.16; author skrll; state Exp; branches; next 1.2; 1.2 date 2001.03.10.00.30.06; author wulf; state Exp; branches; next 1.1; 1.1 date 2001.03.10.00.27.37; author wulf; state Exp; branches; next ; desc @@ 1.4 log @Update to version 1.2.6 Changes are: Opening the Find dialog no longer toggles a breakpoint. Make mouse wheel work (again) in source, variables, and watch windows. When a pointer to a struct is expanded the struct is also expanded. Improved toolbar and application icons. @ text @--- kdbg/ttywnd.cpp.orig Tue Jul 2 14:31:36 2002 +++ kdbg/ttywnd.cpp Tue Jul 2 14:33:00 2002 @@@@ -32,6 +32,9 @@@@ #ifdef HAVE_LIBUTIL_H #include /* openpty on FreeBSD */ #endif +#ifdef __NetBSD__ +#include /* openpty on NetBSD */ +#endif #include #include "mydebug.h" @ 1.3 log @Update to 1.2.5. Changes are: Now compiles for KDE 3. Fixed make install for builddir != srcdir. Fixed status bar flicker. This gives a nice speed-up by a factor of 4 when the contents of an array of 50 QStrings are displayed! Now compiles for KDE 3 (Beta1). Support QString of Qt 3.x. Improved (and fixed) the display of arrays with repeated values. Fixed crash when a file is reloaded while disassembled code is displayed. Fixed parsing of stack frames involving signal handler invocations. Fixed invisible toolbar under KDE 2.x (really, this time, I promise). Fixed crash when no line has the cursor (empty files). Don't display a blank page when a non-existing file was tried to open. The memory window is now organized in columns. Values that changed between program stops are displayed in red color. Big kudos go to Alexandre Clement for this feature. From Joe Reed in pkg/17577 @ text @@ 1.2 log @Damn, forgot the tag @ text @d1 6 a6 8 $NetBSD$ --- kdbg/mainwndbase.cpp.orig Wed Sep 13 03:44:40 2000 +++ kdbg/mainwndbase.cpp Wed Feb 28 00:31:03 2001 @@@@ -562,7 +562,11 @@@@ */ static const char shellScriptFmt[] = "tty>%s;" d8 1 a8 3 + "trap \"\" 2 3 18;" /* ignore various signals */ +#else "trap \"\" INT QUIT TSTP;" /* ignore various signals */ d10 3 a12 3 "exec<&-;exec>&-;" /* close stdin and stdout */ "while :;do sleep 3600;done"; // let config file override this script @ 1.1 log @NetBSD's "sh" shell is not POSIX compliant reporting trap: Illegal number: INT in debug screen due to the execution of "trap \"\" INT QUIT TSTP" in ./kdbg/mainwndbase.cpp:565 Added pre-processor for NetBSD that uses "trap \"\" 2 3 18" instead. @ text @d1 2 @