From: Eli Zaretskii Date: Mon, 18 Jan 2016 15:42:57 +0000 (+0200) Subject: Unbreak the MS-Windows build X-Git-Tag: emacs-25.0.90~140 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=687a64f637253b5ffbbed3c4f620aabe411e1a17;p=emacs.git Unbreak the MS-Windows build * src/sysdep.c (emacs_gnutls_global_init, gnutls_rnd): Disable for WINDOWSNT, to avoid link failure. (Bug#22202) --- diff --git a/src/sysdep.c b/src/sysdep.c index 6b2b2053a24..d3e271b9dff 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -100,7 +100,7 @@ along with GNU Emacs. If not, see . */ #include "cm.h" #include "gnutls.h" -#if 0x020c00 <= GNUTLS_VERSION_NUMBER +#if 0x020c00 <= GNUTLS_VERSION_NUMBER && !defined WINDOWSNT # include #else # define emacs_gnutls_global_init() Qnil