diff options
author | Pedro Alves <palves@redhat.com> | 2010-07-28 11:48:23 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-07-28 11:48:23 +0000 |
commit | db5e03ae671bcb204e7373850d4911a267baa8cd (patch) | |
tree | dcab9cf96f458909c3bfcc9fbc8a814f15c082ea /gdb | |
parent | 25313d6a3f66609ed77058554135835d558c5fec (diff) | |
download | gdb-db5e03ae671bcb204e7373850d4911a267baa8cd.zip gdb-db5e03ae671bcb204e7373850d4911a267baa8cd.tar.gz gdb-db5e03ae671bcb204e7373850d4911a267baa8cd.tar.bz2 |
* configure.ac: Check for resize_term.
* configure, config.in: Regenerate.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/config.in | 3 | ||||
-rwxr-xr-x | gdb/configure | 2 | ||||
-rw-r--r-- | gdb/configure.ac | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0635a14..bdd1a6e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-07-28 Pedro Alves <pedro@codesourcery.com> + + * configure.ac: Check for resize_term. + * configure, config.in: Regenerate. + 2010-07-27 Joel Brobecker <brobecker@adacore.com> * MAINTAINERS (Write After Approval): Reorder a couple of entries. diff --git a/gdb/config.in b/gdb/config.in index 1fc457d..635b85b 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -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 diff --git a/gdb/configure b/gdb/configure index 174c186..bf93faf 100755 --- a/gdb/configure +++ b/gdb/configure @@ -12509,7 +12509,7 @@ $as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h 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 diff --git a/gdb/configure.ac b/gdb/configure.ac index bfe1803..324a2c2 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -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]) |