|
Lines 4699-4704
AC_ARG_WITH([bsd-auth],
Link Here
|
| 4699 |
] |
4699 |
] |
| 4700 |
) |
4700 |
) |
| 4701 |
|
4701 |
|
|
|
4702 |
AC_ARG_WITH([capabilities], |
| 4703 |
[ --with-capabilities Enable Linux capabilities], |
| 4704 |
[ |
| 4705 |
if test "x$withval" != "xno" ; then |
| 4706 |
AC_CHECK_DECL(CAP_NET_BIND_SERVICE, [], |
| 4707 |
[AC_MSG_ERROR([CAP_NET_BIND_SERVICE not found])], |
| 4708 |
[#include <sys/capability.h>] |
| 4709 |
) |
| 4710 |
AC_SEARCH_LIBS([cap_get_proc], [cap], [ |
| 4711 |
AC_DEFINE([LINUX_CAPABILITIES], [1], |
| 4712 |
[Define if you want to use Linux capabilties]) |
| 4713 |
], [ |
| 4714 |
AC_MSG_ERROR([libcap not found]) |
| 4715 |
]) |
| 4716 |
fi |
| 4717 |
] |
| 4718 |
) |
| 4719 |
|
| 4702 |
# Where to place sshd.pid |
4720 |
# Where to place sshd.pid |
| 4703 |
piddir=/var/run |
4721 |
piddir=/var/run |
| 4704 |
# make sure the directory exists |
4722 |
# make sure the directory exists |