summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTJ <linux@tjworld.net>2010-04-03 10:50:48 +0100
committerRichard Jones <rjones@redhat.com>2010-04-03 10:50:48 +0100
commit7614b64ca6c091d487a1b9c47462bd30be0f5445 (patch)
tree05cde03512cf09eb62a8fcc88bf0b805eea1bc3b /configure.ac
parent235a9619ffe45d81805cf3527e55c9b7168a6385 (diff)
downloadhivex-7614b64ca6c091d487a1b9c47462bd30be0f5445.tar.gz
hivex-7614b64ca6c091d487a1b9c47462bd30be0f5445.tar.xz
hivex-7614b64ca6c091d487a1b9c47462bd30be0f5445.zip
Remove explicit dependency on ncurses.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 8f19a2f..dda6892 100644
--- a/configure.ac
+++ b/configure.ac
@@ -143,7 +143,7 @@ AC_ARG_WITH([readline],
LIBREADLINE=
AS_IF([test "x$with_readline" != xno],
[AC_CHECK_LIB([readline], [main],
- [AC_SUBST([LIBREADLINE], ["-lreadline -lncurses"])
+ [AC_SUBST([LIBREADLINE], ["-lreadline"])
AC_DEFINE([HAVE_LIBREADLINE], [1],
[Define if you have libreadline])
],
@@ -151,7 +151,7 @@ AS_IF([test "x$with_readline" != xno],
AC_MSG_FAILURE(
[--with-readline was given, but test for readline failed])
fi
- ], -lncurses)])
+ ])])
dnl For i18n.
AM_GNU_GETTEXT([external])