Files
telephony/net/sipp/patches/01-ncurses-not-curses.patch
Sebastian Kemper 85d15f25f9 sipp: version bump, build fixes
- 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>
2017-08-10 20:47:38 +02:00

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!))