diff options
author | jlam <jlam@pkgsrc.org> | 2004-12-11 00:13:54 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-12-11 00:13:54 +0000 |
commit | 31699ec3a17421cea88d76202ab84113ecde250b (patch) | |
tree | 4b1367f5504faf0f0739f59a4f8c37795746deea /mail/libesmtp/patches | |
parent | 547cf4f8d11ecac63fb0a8191a22023ac0e37284 (diff) | |
download | pkgsrc-31699ec3a17421cea88d76202ab84113ecde250b.tar.gz |
The "Evil Hack" is now a standard part of openssl buildlink3 which
can be simply turned on by setting USE_OLD_DES_API=yes. Modify
references to <openssl/des.h> to refer to <openssl/des_old.h> where
the old DES interface is expected. This is forward compatible with
future versions of OpenSSL.
Diffstat (limited to 'mail/libesmtp/patches')
-rw-r--r-- | mail/libesmtp/patches/patch-ad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/libesmtp/patches/patch-ad b/mail/libesmtp/patches/patch-ad index 060a61c8419..63efabc5ce7 100644 --- a/mail/libesmtp/patches/patch-ad +++ b/mail/libesmtp/patches/patch-ad @@ -1,4 +1,4 @@ -$NetBSD: patch-ad,v 1.1 2003/07/28 14:51:37 drochner Exp $ +$NetBSD: patch-ad,v 1.2 2004/12/11 00:13:54 jlam Exp $ --- ntlm/ntlmdes.c.orig 2003-07-25 19:54:18.000000000 +0200 +++ ntlm/ntlmdes.c 2003-07-25 19:54:34.000000000 +0200 @@ -7,7 +7,7 @@ $NetBSD: patch-ad,v 1.1 2003/07/28 14:51:37 drochner Exp $ #include <string.h> #include <ctype.h> -#include <openssl/des.h> -+#include <des.h> ++#include <openssl/des_old.h> #include <openssl/md4.h> #include "ntlm.h" |