mirror of
https://github.com/openwrt/telephony.git
synced 2025-12-22 01:44:35 +04:00
- bumped to 3.5.1 - removed musl patch because it was upstreamed - add patch to fix ncurses detection - fixes issue #125 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
12 lines
416 B
Diff
12 lines
416 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -84,7 +84,7 @@ case "$host" in
|
|
esac
|
|
|
|
# ==================== checks for libraries =============================
|
|
-AC_CHECK_LIB(curses,initscr,,[AC_MSG_ERROR([ncurses library missing])])
|
|
+AC_CHECK_LIB(ncurses,initscr,,[AC_MSG_ERROR([ncurses library missing])])
|
|
AC_CHECK_LIB(pthread, pthread_mutex_init, THREAD_LIBS="-lpthread",
|
|
AC_MSG_ERROR(pthread library needed!))
|
|
|