]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/cyrus-sasl-2.1.21-openssl98-1.patch
Zwischencommit fuer LFS.
[ipfire-2.x.git] / src / patches / cyrus-sasl-2.1.21-openssl98-1.patch
1 Submitted By: Dan Nicholson <dnicholson_at_linuxfromscratch_dot_org>
2 Date: 2006-04-25
3 Initial Package Version: 2.1.21
4 Upstream Status: Applied
5 Origin: Upstream CVS
6 http://asg.web.cmu.edu/archive/message.php?mailbox=org.acs.asg.project.sasl.commits&msg=1519
7 http://asg.web.cmu.edu/archive/message.php?mailbox=org.acs.asg.project.sasl.commits&msg=1578
8 Description: Adds needed headers for plugins when compiled with OpenSSL-0.9.8
9
10 diff -pNur cyrus-sasl-2.1.21.orig/plugins/ntlm.c cyrus-sasl-2.1.21/plugins/ntlm.c
11 --- cyrus-sasl-2.1.21.orig/plugins/ntlm.c 2004-12-24 16:06:14.000000000 +0000
12 +++ cyrus-sasl-2.1.21/plugins/ntlm.c 2006-04-25 18:46:24.433487794 +0000
13 @@ -74,6 +74,7 @@
14 #endif /* WIN32 */
15
16 #include <openssl/md4.h>
17 +#include <openssl/md5.h>
18 #include <openssl/hmac.h>
19 #include <openssl/des.h>
20 #include <openssl/opensslv.h>
21 diff -pNur cyrus-sasl-2.1.21.orig/plugins/passdss.c cyrus-sasl-2.1.21/plugins/passdss.c
22 --- cyrus-sasl-2.1.21.orig/plugins/passdss.c 2004-11-27 16:17:43.000000000 +0000
23 +++ cyrus-sasl-2.1.21/plugins/passdss.c 2006-04-25 18:46:36.131787252 +0000
24 @@ -67,6 +67,9 @@
25 /* for digest and cipher support */
26 #include <openssl/evp.h>
27 #include <openssl/hmac.h>
28 +#include <openssl/md5.h>
29 +#include <openssl/sha.h>
30 +#include <openssl/dsa.h>
31
32 #include <sasl.h>
33 #define MD5_H /* suppress internal MD5 */
34 diff -pNur cyrus-sasl-2.1.21.orig/plugins/srp.c cyrus-sasl-2.1.21/plugins/srp.c
35 --- cyrus-sasl-2.1.21.orig/plugins/srp.c 2004-06-23 18:43:37.000000000 +0000
36 +++ cyrus-sasl-2.1.21/plugins/srp.c 2006-04-25 18:46:36.135785645 +0000
37 @@ -87,6 +87,7 @@ typedef unsigned short uint32;
38 /* for digest and cipher support */
39 #include <openssl/evp.h>
40 #include <openssl/hmac.h>
41 +#include <openssl/md5.h>
42
43 #include <sasl.h>
44 #define MD5_H /* suppress internal MD5 */