/connect works - although only with IP addresses.

This commit is contained in:
Edward Tomasz Napierala 2017-07-27 14:20:47 +01:00
commit cec68557aa
5 changed files with 165 additions and 6 deletions

View file

@ -514,7 +514,12 @@ dnl **
if test "x$want_capsicum" = "xyes"; then
AC_CHECK_LIB(c, cap_enter, [
AC_DEFINE(HAVE_CAPSICUM,, Build with Capsicum support)
AC_CHECK_LIB(nv, nvlist_create, [
AC_DEFINE(HAVE_CAPSICUM,, Build with Capsicum support)
LIBS="$LIBS -lnv"
], [
want_capsicum="no, nvlist_create not found"
])
], [
want_capsicum="no, cap_enter not found"
])