summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-12-14 18:15:22 -0500
committerEric S. Raymond <esr@thyrsus.com>2010-12-14 18:15:22 -0500
commit0f8907e2b4e21db77c479350521326f3a48317bf (patch)
treefc12c6bdf2924eead6514d934f19e5e6addd42e1 /configure.ac
parentde41fa954fe55b8cbe7e6becfcf71383e8b838bf (diff)
downloadgpsd-0f8907e2b4e21db77c479350521326f3a48317bf.tar.gz
The difference between curses.h and ncurses shouldn't matter to gpsd.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 0 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 5f13a370..d8c6d54e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -269,11 +269,6 @@ size_t strlcpy(/*@out@*/char *dst, /*@in@*/const char *src, size_t size);
dnl Check for curses headers and libraries. The presence of the
dnl library is used to decide whether or not to build some programs.
-dnl Those programs use ncurses.h if found, and otherwise use curses.h.
-dnl TODO: give an example of what system uses curses.h with
-dnl libncurses. We define our own variables to reduce the risk of
-dnl breaking if autoconf changes (private) variable names.
-AC_CHECK_HEADERS(ncurses.h)
AC_CHECK_LIB(ncurses, initscr, NCURSES_LIBS="-lncurses")
AC_SUBST(NCURSES_LIBS)
if test x"$NCURSES_LIBS" = x"" ; then