search for: ssh_agent_opt

Displaying 1 result from an estimated 1 matches for "ssh_agent_opt".

2012 Mar 11
2
[patch] Threading support in ssh-agent
...nssl_threads=yes; + ] , [ + AC_MSG_RESULT([no - threading could not be used]) + ] +) + +AC_ARG_WITH([pthread], + [ --with-pthread Use pthread], + [ + if test "x$withval" = "xno" ; then + AC_MSG_CHECKING([whether pthread support enabled]) + AC_MSG_RESULT([no]) + ssh_agent_options="threading:no" + elif test "x$withval" = "xyes"; then + AC_CHECK_LIB(pthread, pthread_create,, + [ + AC_MSG_ERROR([pthread library not found]) + ] + ) + if test "$have_openssl_threads" ; then + true; + else + AC_MSG_ERROR([Openssl...