This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] Correct origin calculation of command line window in TUI mode


On Tuesday 27 July 2010 23:46:46, Pedro Alves wrote:
> > On Tuesday 27 July 2010 23:38:02, Balazs Kezes wrote:
> > Yeah, these 3 patches are not enough. There are two remaining modifications
> > which need to be done:
> 
> > 1) HAVE_RESIZE_TERM - to make sure ncurses knows about the terminal size.
> >    Somehow this needs to be added to the configuration. I'm not sure how to do
> >    this. Maybe I'll look into this sometime.
> 
> I'll do this.  (...)

I've now applied this patch below.  Thanks.

-- 
Pedro Alves

2010-07-28  Pedro Alves  <pedro@codesourcery.com>

	* configure.ac: Check for resize_term.
	* configure, config.in: Regenerate.

---
 gdb/config.in    |    3 +++
 gdb/configure    |    2 +-
 gdb/configure.ac |    2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

Index: src/gdb/configure.ac
===================================================================
--- src.orig/gdb/configure.ac	2010-07-28 12:39:02.000000000 +0100
+++ src/gdb/configure.ac	2010-07-28 12:41:35.000000000 +0100
@@ -954,7 +954,7 @@ AC_FUNC_ALLOCA
 AC_FUNC_MMAP
 AC_FUNC_VFORK
 AC_CHECK_FUNCS([canonicalize_file_name realpath getrusage getuid \
-		getgid pipe poll pread64 sbrk setpgid setpgrp setsid \
+		getgid pipe poll pread64 resize_term sbrk setpgid setpgrp setsid \
 		sigaction sigprocmask sigsetmask socketpair syscall \
 		ttrace wborder setlocale iconvlist libiconvlist btowc \
 		setrlimit getrlimit posix_madvise])
Index: src/gdb/configure
===================================================================
--- src.orig/gdb/configure	2010-07-28 12:39:02.000000000 +0100
+++ src/gdb/configure	2010-07-28 12:41:35.000000000 +0100
@@ -12509,7 +12509,7 @@ $as_echo "#define HAVE_WORKING_FORK 1" >
 fi
 
 for ac_func in canonicalize_file_name realpath getrusage getuid \
-		getgid pipe poll pread64 sbrk setpgid setpgrp setsid \
+		getgid pipe poll pread64 resize_term sbrk setpgid setpgrp setsid \
 		sigaction sigprocmask sigsetmask socketpair syscall \
 		ttrace wborder setlocale iconvlist libiconvlist btowc \
 		setrlimit getrlimit posix_madvise
Index: src/gdb/config.in
===================================================================
--- src.orig/gdb/config.in	2010-07-28 12:39:02.000000000 +0100
+++ src/gdb/config.in	2010-07-28 12:41:35.000000000 +0100
@@ -461,6 +461,9 @@
 /* Define to 1 if you have the `realpath' function. */
 #undef HAVE_REALPATH
 
+/* Define to 1 if you have the `resize_term' function. */
+#undef HAVE_RESIZE_TERM
+
 /* Define to 1 if you have the `sbrk' function. */
 #undef HAVE_SBRK
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]