Move the check for termcap-related headers.
authorTaylor R Campbell <campbell@mumble.net>
Sun, 8 Aug 2010 02:56:56 +0000 (02:56 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Sun, 8 Aug 2010 02:56:56 +0000 (02:56 +0000)
This puts the warning messages about emulating termcap or tparm
closer to the checks, which makes configure's output make a trifle
more sense.

src/microcode/configure.ac

index a1364e4e9f8b6d1aa0d1463d5a0692e7c98fd536..b7fb859cf20aff5525fa868fb666052c6200af8b 100644 (file)
@@ -691,6 +691,9 @@ dnl database, we can emulate `tparam' -- either in terms of `tparm' or
 dnl by pretending we know the format -- without bringing in the local
 dnl termcap reimplementation.
 
+dnl Go for whatever header files we can.
+AC_CHECK_HEADERS([ncurses.h curses.h term.h])
+
 if test "x${with_termcap}" = xyes; then
 
     AC_CHECK_LIB([ncurses], [tgetent], [have_ncurses=yes])
@@ -734,9 +737,6 @@ elif test "x${with_termcap}" != xno; then
 
 fi
 
-dnl Go for whatever header files we can.
-AC_CHECK_HEADERS([ncurses.h curses.h term.h])
-
 case "${with_termcap}" in
 yes)
     AC_MSG_WARN([No termcap library found; will emulate it])