On 02-04-24 00:40:06 CEST, Josef Vesely wrote: > 1. Something wrong is in the root Makefile. > When I type "make help" "make ca" or "make ext", it automaticly run "make > configure" without any reason.
there is no rule that runs "make configure" in the top level Makefile. do you mean it runs autoconf? > I remember this errorr, from some older snap. (04/10/02 maybe). My solution > was to comment lines for the configure option in Makefile, then is it ok. this usually means that the configure.in is newer than the configure file. is it? > My error-ssl.log is full of "unable to write 'random state'" messages. Do you > know, what should be wrong? for cryptography, you need a lot of random bytes (you don't anyone to guess your keys, do you?). since truely random bytes are hard to get, it tries to keep them around in a file for later use. this file cannot be written. you should check the file's permissions. rj _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
