Commit 4940d2ad authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

secur32: Default to building with GnuTLS support on macOS, if present.

parent 66a91fe6
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include "wine/debug.h" #include "wine/debug.h"
#include "wine/unicode.h" #include "wine/unicode.h"
#if defined(SONAME_LIBGNUTLS) && !defined(HAVE_SECURITY_SECURITY_H) #if defined(SONAME_LIBGNUTLS)
WINE_DEFAULT_DEBUG_CHANNEL(secur32); WINE_DEFAULT_DEBUG_CHANNEL(secur32);
WINE_DECLARE_DEBUG_CHANNEL(winediag); WINE_DECLARE_DEBUG_CHANNEL(winediag);
...@@ -1122,4 +1122,4 @@ NTSTATUS CDECL __wine_init_unix_lib( HMODULE module, DWORD reason, const void *p ...@@ -1122,4 +1122,4 @@ NTSTATUS CDECL __wine_init_unix_lib( HMODULE module, DWORD reason, const void *p
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
#endif /* SONAME_LIBGNUTLS && !HAVE_SECURITY_SECURITY_H */ #endif /* SONAME_LIBGNUTLS */
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include "secur32_priv.h" #include "secur32_priv.h"
#include "wine/debug.h" #include "wine/debug.h"
#ifdef HAVE_SECURITY_SECURITY_H #if defined(HAVE_SECURITY_SECURITY_H) && !defined(SONAME_LIBGNUTLS)
WINE_DEFAULT_DEBUG_CHANNEL(secur32); WINE_DEFAULT_DEBUG_CHANNEL(secur32);
...@@ -1290,4 +1290,4 @@ NTSTATUS CDECL __wine_init_unix_lib( HMODULE module, DWORD reason, const void *p ...@@ -1290,4 +1290,4 @@ NTSTATUS CDECL __wine_init_unix_lib( HMODULE module, DWORD reason, const void *p
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
#endif /* HAVE_SECURITY_SECURITY_H */ #endif /* HAVE_SECURITY_SECURITY_H && !SONAME_LIBGNUTLS */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment