Browse Source

Bugfix: If native ncurses detection fails, print "none?" result before moving on to try AC_SEARCH_LIBS scan

Luke Dashjr 13 years ago
parent
commit
0d22cc6780
1 changed files with 3 additions and 0 deletions
  1. 3 0
      configure.ac

+ 3 - 0
configure.ac

@@ -265,6 +265,9 @@ else
 		done
 		LIBS="$orig_libs"
 		CFLAGS="$orig_cflags"
+		if test "x$curses" != "xyes"; then
+			AC_MSG_RESULT([none?])
+		fi
 	fi
 	if test "x$curses" != "xyes"; then