diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-13 18:03:24 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-13 18:03:24 +0000 |
commit | 511fef6119456f9fd0f9fac834a090f05686c88f (patch) | |
tree | 46d16d93345a75dee379c48c1072eacd7105dd7e /chat/ircd-hybrid/patches | |
parent | 015eba3cab377467b0fb8098f748301bdf124c34 (diff) | |
download | pkgsrc-511fef6119456f9fd0f9fac834a090f05686c88f.tar.gz |
Let us assume for a moment that OpenSSL version numbers are increasing
and replace a bogus check with >=, since 6 & 7 != 6.
Diffstat (limited to 'chat/ircd-hybrid/patches')
-rw-r--r-- | chat/ircd-hybrid/patches/patch-ae | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chat/ircd-hybrid/patches/patch-ae b/chat/ircd-hybrid/patches/patch-ae new file mode 100644 index 00000000000..1ebe387baf1 --- /dev/null +++ b/chat/ircd-hybrid/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.3 2005/12/13 18:03:24 joerg Exp $ + +--- configure.orig 2005-12-13 17:56:13.000000000 +0000 ++++ configure +@@ -7531,7 +7531,7 @@ cat >>conftest.$ac_ext <<_ACEOF + int + main () + { +-if ( (OPENSSL_VERSION_NUMBER & 0x00906000) == 0x00906000) ++if ( OPENSSL_VERSION_NUMBER >= 0x00906000) + exit(0); else exit(1); + ; + return 0; |