Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorEgor Bogatov <egorbo@gmail.com>2018-09-21 10:51:41 +0300
committerMarek Safar <marek.safar@gmail.com>2018-09-21 10:51:41 +0300
commite162fdaedea471f8e451cf77ef0e3a4e85122c68 (patch)
tree184934875cc73baa768063755f17b542725682ae /data
parent39ecb27fc99a6a77c57a569deaa9e7c0becc878d (diff)
[System.Data] use PAL_gssapi.c for SSPI (#9922)
PAL_gssapi.c was converted to C recently in corefx but since our fork is not up to date I copied `PAL_gssapi.c` and `PAL_gssapi.h` into mono/metadata (I guess I should just cherry-pick those files to our fork). For System.Data it will allow users to connect to sql servers using SSPI (Security Support Provider Interface). See https://github.com/mono/mono/issues/9028 and https://github.com/mono/mono/issues/9751 on macOS (and iOS) it uses built-in GSS.framework. on Linux it requires an additional package (`krb`) to be installed (see .NET Core prerequisites, e.g. https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x#ubuntu). Unfortunately it's not installed on our CI yet.
Diffstat (limited to 'data')
-rw-r--r--data/config.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/data/config.in b/data/config.in
index dbef498893a..cc3e8c63a54 100644
--- a/data/config.in
+++ b/data/config.in
@@ -12,6 +12,7 @@
<dllmap dll="db2cli" target="libdb2_36@libsuffix@" os="!windows"/>
<dllmap dll="MonoPosixHelper" target="$mono_libdir/libMonoPosixHelper@libsuffix@" os="!windows" />
<dllmap dll="System.Native" target="$mono_libdir/libmono-system-native@libsuffix@" os="!windows" />
+ <dllmap dll="System.Net.Security.Native" target="$mono_libdir/libmono-system-net-security-native@libsuffix@" os="!windows" />
<dllmap dll="libmono-btls-shared" target="$mono_libdir/libmono-btls-shared@libsuffix@" os="!windows" />
<dllmap dll="i:msvcrt" target="@LIBC@" os="!windows"/>
<dllmap dll="i:msvcrt.dll" target="@LIBC@" os="!windows"/>