[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: 1.4.0 HP-UX lack of entropy

From: Méresse Christophe <christophe.meresse_at_nagra.com>
Date: 2006-11-02 16:32:48 CET

> -----Original Message-----
> From: news [mailto:news@sea.gmane.org]On Behalf Of Marc Girod
> Sent: jeudi, 2. novembre 2006 15:39
> To: users@subversion.tigris.org
> Subject: 1.4.0 HP-UX lack of entropy
>
[snip]
>
> In both cases, building neon (separately) reported that the use of egd
> was not necessary because the version of openssl was higher
> than 0.9.7.
>
> However, the result works with https on Solaris, and fails on HP-UX:

Hi,

Yes I got in the same trouble some days ago.
The --with-egd and --enable-egd does not seem to work at least on HP-UX (or may be as you said it considers that it's not necessary because of the openssl version... but it should not with this old OS !)

I've finally solved it like that:
After doing the .configure (with all options) I've manually modified the config.h file before doing the compilation.
Replacing:
/* Define to specific EGD socket path */
/* #undef EGD_PATH */

/* Define if EGD should be supported */
/* #undef ENABLE_EGD */
By:
/* Define to specific EGD socket path */
#define EGD_PATH "/your/path/to/prngd-pool"

/* Define if EGD should be supported */
#define ENABLE_EGD 1

Note that you have to install prngd or egd on HP-UX as there is no /dev/random or /dev/urandom

Regards
Christophe Méresse

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Nov 2 16:33:28 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.