summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKarel Zak2014-06-05 14:32:51 +0200
committerKarel Zak2014-06-05 14:32:51 +0200
commit7556c9443a5550731df5de15d6d3c6850f848503 (patch)
treedd79e9add13f618c3b56c613265e6ae4fc4d4f3e /configure.ac
parentcfdisk: add [Sort] operation (diff)
downloadkernel-qcow2-util-linux-7556c9443a5550731df5de15d6d3c6850f848503.tar.gz
kernel-qcow2-util-linux-7556c9443a5550731df5de15d6d3c6850f848503.tar.xz
kernel-qcow2-util-linux-7556c9443a5550731df5de15d6d3c6850f848503.zip
cfdisk: resize UI on SIGWINCH
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e7c6a144d..107184bf9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -706,7 +706,11 @@ AM_CONDITIONAL([HAVE_SLANG], [test "x$have_slang" = xyes])
AS_IF([test "x$have_slang" = xyes -o "x$have_ncurses" = xyes], [
AC_CHECK_LIB([$CURSES_LIB_NAME], use_default_colors, [
AC_DEFINE(HAVE_USE_DEFAULT_COLORS, 1,
- [Define if curses library has the use_default_colors command.])
+ [Define if curses library has the use_default_colors().])
+ ])
+ AC_CHECK_LIB([$CURSES_LIB_NAME], resizeterm, [
+ AC_DEFINE(HAVE_RESIZETERM, 1,
+ [Define if curses library has the resizeterm().])
])
])