summaryrefslogtreecommitdiffstats
path: root/configure.ac.in
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2013-05-12 22:16:51 +0800
committerGeoff Levand <geoff@infradead.org>2013-05-16 16:23:13 +0800
commit651e0c19b505aad965b2f7988c1bf7a067d93c0d (patch)
treec57376c6c8df3482d47774aa9966e80308fecc6a /configure.ac.in
parent5024701da503c883bd23eb2b443b03297a0e8594 (diff)
downloadtalos-petitboot-651e0c19b505aad965b2f7988c1bf7a067d93c0d.tar.gz
talos-petitboot-651e0c19b505aad965b2f7988c1bf7a067d93c0d.zip
configure: Add check for libncurses
Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'configure.ac.in')
-rw-r--r--configure.ac.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.ac.in b/configure.ac.in
index acfab28..bfc2572 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -67,6 +67,14 @@ AC_ARG_WITH(
)
AM_CONDITIONAL([WITH_NCURSES], [test "x$with_ncurses" = "xyes"])
+AS_IF(
+ [test "x$with_ncurses" = "xyes"],
+ AC_CHECK_LIB([ncurses], [initscr],
+ [],
+ [AC_MSG_FAILURE([--with-ncurses was given but the test for libncurses failed. Try installing the package ncurses-dev or ncurses-devel.])]
+ )
+)
+
AC_ARG_WITH(
[twin-x11],
[AS_HELP_STRING([--with-twin-x11],
@@ -102,7 +110,7 @@ AS_IF(
[twin],
[twin_feature_init],
[],
- [AC_MSG_FAILURE([--with-twin was given, but test for twin failed])]
+ [AC_MSG_FAILURE([--with-twin was given but the test for libtwin failed.])]
)
LIBS="$SAVE_LIBS"
],
OpenPOWER on IntegriCloud