tags 337912 patch thanks The configure script is fscked up for newer versions of libssl. Attached here is a patch to fix the issue.
Cheers, -- .''`. Aurélien GÉRÔME : :' : `. `'` Free Software Developer `- Unix Sys & Net Admin
--- configure.orig 2006-08-04 21:54:37.095216865 +0000
+++ configure 2006-08-04 21:55:06.875476692 +0000
@@ -5300,7 +5300,7 @@
#include <openssl/opensslv.h>
#include <stdlib.h>
int main(void) {
- if ( (OPENSSL_VERSION_NUMBER & 0x00906000) == 0x00906000)
+ if (OPENSSL_VERSION_NUMBER >= 0x00906000)
{
exit(0);
}
signature.asc
Description: Digital signature

