diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2010-06-05 13:58:15 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-06-05 13:58:15 +0000 |
commit | b9ac7b273b84f78355517ad6098d6359b68dab1c (patch) | |
tree | e875201a6b6451133b0981ec341c85800e71379b | |
parent | 8072140d3664b32988c00134844aef58c5c1c9b2 (diff) |
Make configure abort on failed check for libncurses.
We used to just continue but this results in a build failure of call.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d939949..f49dfc0 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Checks for libraries. AC_SUBST(AX25_LIB) AC_SUBST(NCURSES_LIB) AC_CHECK_LIB(ax25, ax25_config_load_ports, AX25_LIB="-lax25", AC_MSG_ERROR(Could not find the libax25 libraries; aborting)) -AC_CHECK_LIB(ncurses, initscr,NCURSES_LIB="-lncurses",NCURSES_LIB=) +AC_CHECK_LIB(ncurses, initscr,NCURSES_LIB="-lncurses", AC_MSG_ERROR(Could not find the ncurses library; aborting)) dnl Checks for working glibc 2.1 headers AC_CHECK_TYPES([struct ax25_fwd_struct], [], |