search for: sandbox_style

Displaying 3 results from an estimated 3 matches for "sandbox_style".

2011 Jun 23
1
sandbox for OS X
...+ AC_CHECK_HEADERS([sandbox.h]) ;; *-*-dragonfly*) SSHDLIBS="$SSHDLIBS -lcrypt" @@ -2487,6 +2489,11 @@ if test "x$sandbox_arg" = "xsystrace" || ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then SANDBOX_STYLE="systrace" AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)]) +elif test "x$sandbox_arg" = "xdarwin" || \ + ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \ + test "x$...
2011 Jun 22
3
sandbox pre-auth privsep child
...t; = "xyes" ; then + sandbox_arg="" + else + sandbox_arg="$withval" + fi + ] +) +if test "x$sandbox_arg" = "xsystrace" || \ + ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then + SANDBOX_STYLE="systrace" + AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)]) +elif test "x$sandbox_arg" = "xrlimit" || \ + ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" ) ; then + SANDBOX_STYLE="rlimit...
2012 Mar 11
2
[patch] Threading support in ssh-agent
...default=0" + ] + ) +fi + # Check for PAM libs PAM_MSG="no" AC_ARG_WITH([pam], @@ -4285,6 +4362,7 @@ echo " BSD Auth support: $BSD_AUTH_MSG" echo " Random number source: $RAND_MSG" echo " Privsep sandbox style: $SANDBOX_STYLE" +echo " ssh-agent: $ssh_agent_options" echo "" Index: ssh-agent.1 =================================================================== RCS file: /cvs/openssh/ssh-agent.1,v retrieving revision 1.53 diff -u -r1.53 ssh-agent.1 --- ssh-agent.1 1 Dec...