Re: [01/10] secur32: Implement AcquireCredentialsHandle for Kerberos.
Hans Leidekker <hans(a)codeweavers.com> writes:
@@ -2,8 +2,8 @@ MODULE = secur32.dll IMPORTLIB = secur32 IMPORTS = netapi32 advapi32 DELAYIMPORTS = crypt32 -EXTRAINCL = $(GNUTLS_CFLAGS) -EXTRALIBS = $(SECURITY_LIBS) +EXTRAINCL = $(GNUTLS_CFLAGS) $(GSSAPI_CFLAGS) +EXTRALIBS = $(SECURITY_LIBS) $(GSSAPI_LIBS)
Shouldn't the library be loaded dynamically? -- Alexandre Julliard julliard(a)winehq.org
On Mon, 2017-10-16 at 10:15 +0200, Alexandre Julliard wrote:
Hans Leidekker <hans(a)codeweavers.com> writes:
@@ -2,8 +2,8 @@ MODULE = secur32.dll IMPORTLIB = secur32 IMPORTS = netapi32 advapi32 DELAYIMPORTS = crypt32 -EXTRAINCL = $(GNUTLS_CFLAGS) -EXTRALIBS = $(SECURITY_LIBS) +EXTRAINCL = $(GNUTLS_CFLAGS) $(GSSAPI_CFLAGS) +EXTRALIBS = $(SECURITY_LIBS) $(GSSAPI_LIBS)
Shouldn't the library be loaded dynamically?
How do we decide? This library should be available on most Linux distributions. The configure check fails on macOS because its version of the Kerberos libraries is too old (unfortunately).
Hans Leidekker <hans(a)codeweavers.com> writes:
On Mon, 2017-10-16 at 10:15 +0200, Alexandre Julliard wrote:
Hans Leidekker <hans(a)codeweavers.com> writes:
@@ -2,8 +2,8 @@ MODULE = secur32.dll IMPORTLIB = secur32 IMPORTS = netapi32 advapi32 DELAYIMPORTS = crypt32 -EXTRAINCL = $(GNUTLS_CFLAGS) -EXTRALIBS = $(SECURITY_LIBS) +EXTRAINCL = $(GNUTLS_CFLAGS) $(GSSAPI_CFLAGS) +EXTRALIBS = $(SECURITY_LIBS) $(GSSAPI_LIBS)
Shouldn't the library be loaded dynamically?
How do we decide? This library should be available on most Linux distributions. The configure check fails on macOS because its version of the Kerberos libraries is too old (unfortunately).
We decide based on whether the dll can still be useful in case the library is missing, which seems to be the case here. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Hans Leidekker