Displaying 4 results from an estimated 4 matches for "ossh_path_entropy_prog".
2002 May 09
2
OSSH_PATH_ENTROPY_PROG' unexpected
.......
checking for OpenSSL directory... /usr/local/ssl
checking for RSA support... yes
checking whether OpenSSL's headers match the library... yes
checking whether OpenSSL's PRNG is internally seeded... yes
checking for PRNGD/EGD socket... not found
./configure: syntax error at line 7698: `OSSH_PATH_ENTROPY_PROG' unexpected
I've tried with and without --with-rand-helper=no and I get the same
failure.
I've tried this using:
cc: Sun WorkShop 6 update 1 C 5.2 2000/09/11
gcc version 2.95.3 20010315 (release) rep
Full configure.out is attached.
Any pointers to FAQs or other docs appreciated,...
2001 Jun 07
2
Patch to enable multiple possible sources of entropy
...******
*** 1375,1385 ****
]
)
# detect pathnames for entropy gathering commands, if we need them
INSTALL_SSH_PRNG_CMDS=""
rm -f prng_commands
! if (test -z "$RANDOM_POOL" && test -z "$PRNGD") ; then
# Use these commands to collect entropy
OSSH_PATH_ENTROPY_PROG(PROG_LS, ls)
OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat)
--- 1378,1406 ----
]
)
+ # Check for use of builtin entropy collector
+ AC_ARG_WITH(builtin-entropy,
+ [ --with-builtin-entropy use builtin entropy collector if nothing else available],
+ [
+ if test ! -z "$PRNGD_PORT&...
2001 Jul 26
7
Updated Cray patch against openssh SNAP-20010725
...ine from packet.c to get a singed
integer. The original bsd code use the fact
that you can set a 32bit unsigned int to a 32 bit
signed variable and recover the sign bit.
CRAY ints are 64 bit so the trick can't work.
configure.in - Add OSSH_PATH_ENTROPY_PROG(PROG_SAR, sar).
I missed this in the last patch. It is need for the
sar entry in ssh_prng_cmds.in
deattack.c - Modified to not depend on u_int16_t
being 16bit in size.
packet.c - Add new subroutine to return an explicit signed
integer.
scp.c...
2001 May 21
1
2.9p1 patches
...uot; dnl
+ ]) dnl
+ ])
+ ossh_result=`eval 'echo $'"$ossh_varname"`
+ if test -n "`echo $ossh_varname`"; then
+ AC_MSG_RESULT($ossh_result)
+ if test "x$ossh_result" = "xyes"; then
+ AC_DEFINE($3)
+ fi
+ else
+ AC_MSG_RESULT(no)
+ fi
+])
+
+dnl OSSH_PATH_ENTROPY_PROG(variablename, command):
+dnl Tidiness function, sets 'undef' if not found, and does the AC_SUBST
+AC_DEFUN(OSSH_PATH_ENTROPY_PROG, [
+ AC_PATH_PROG($1, $2)
+ if test -z "[$]$1" ; then
+ $1="undef"
+ fi
+ AC_SUBST($1)
+])
+
+#serial 19
+
+dnl By default, many hosts won...