diff options
Diffstat (limited to 'src/common/weechat.h')
-rw-r--r-- | src/common/weechat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/weechat.h b/src/common/weechat.h index 58bb85717..33160a52f 100644 --- a/src/common/weechat.h +++ b/src/common/weechat.h @@ -27,7 +27,10 @@ #include <stdio.h> #include <sys/time.h> + +#ifdef HAVE_GNUTLS #include <gnutls/gnutls.h> +#endif #if defined(ENABLE_NLS) && !defined(_) #include <locale.h> @@ -108,7 +111,10 @@ extern int quit_weechat; extern char *weechat_home; extern char *local_charset; + +#ifdef HAVE_GNUTLS extern gnutls_certificate_credentials gnutls_xcred; +#endif extern void wee_log_printf (char *, ...); extern void wee_dump (int); |