diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gnutls.c | 1 | ||||
| -rw-r--r-- | src/sysdep.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/gnutls.c b/src/gnutls.c index d242919270b..af2ba52870c 100644 --- a/src/gnutls.c +++ b/src/gnutls.c | |||
| @@ -26,7 +26,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 26 | #include "coding.h" | 26 | #include "coding.h" |
| 27 | 27 | ||
| 28 | #ifdef HAVE_GNUTLS | 28 | #ifdef HAVE_GNUTLS |
| 29 | #include <gnutls/gnutls.h> | ||
| 30 | 29 | ||
| 31 | #ifdef WINDOWSNT | 30 | #ifdef WINDOWSNT |
| 32 | #include <windows.h> | 31 | #include <windows.h> |
diff --git a/src/sysdep.c b/src/sysdep.c index 43ff0a1e496..70cb961e21f 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -95,7 +95,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 95 | #include "gnutls.h" | 95 | #include "gnutls.h" |
| 96 | /* MS-Windows loads GnuTLS at run time, if available; we don't want to | 96 | /* MS-Windows loads GnuTLS at run time, if available; we don't want to |
| 97 | do that during startup just to call gnutls_rnd. */ | 97 | do that during startup just to call gnutls_rnd. */ |
| 98 | #ifndef WINDOWSNT | 98 | #if defined HAVE_GNUTLS && !defined WINDOWSNT |
| 99 | # include <gnutls/crypto.h> | 99 | # include <gnutls/crypto.h> |
| 100 | #else | 100 | #else |
| 101 | # define emacs_gnutls_global_init() Qnil | 101 | # define emacs_gnutls_global_init() Qnil |