2013-09-26 17:14:40 +02:00

24 lines
607 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$NetBSD: patch-ab,v 1.4 2009/08/06 20:01:50 plunky Exp $
OpenSSL provides a version of STRING that conflicts with the Alpine
internal version. Since we don't use it, just define it away for now..
--- imap/src/osdep/unix/ssl_unix.c.orig 2009-08-06 20:45:06.000000000 +0100
+++ imap/src/osdep/unix/ssl_unix.c
@@ -27,6 +27,7 @@
*/
#define crypt ssl_private_crypt
+#define STRING ssl_private_STRING
#include <x509v3.h>
#include <ssl.h>
#include <err.h>
@@ -36,6 +37,7 @@
#include <crypto.h>
#include <rand.h>
#undef crypt
+#undef STRING
#define SSLBUFLEN 8192
#define SSLCIPHERLIST "ALL:!LOW"