Commit 819afe46 authored by Yang Tse's avatar Yang Tse
Browse files

schannel: remove version number and identify its use with 'schannel' literal

Version number is removed in order to make this info consistent with
how we do it with other MS and Linux system libraries for which we don't
provide this info.

Identifier changed from 'WinSSPI' to 'schannel' given that this is the
actual provider of the SSL/TLS support. libcurl can still be built with
SSPI and without SCHANNEL support.
parent c13af843
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@ This release includes the following changes:
 o pop3: Added support for sasl digest-md5 authentication
 o pop3: Added support for apop authentication
 o sspi: Added support for Schannel SSL/TLS encryption
 o sspi: Changed curl version information output

This release includes the following bugfixes:

+0 −1
Original line number Diff line number Diff line
@@ -3044,7 +3044,6 @@ AC_HELP_STRING([--disable-sspi],[Disable SSPI]),
         AC_DEFINE(USE_WINDOWS_SSPI, 1, [to enable SSPI support])
         AC_SUBST(USE_WINDOWS_SSPI, [1])
         curl_sspi_msg="enabled"
         LIBS="$LIBS -lversion"
       else
         AC_MSG_RESULT(no)
         AC_MSG_WARN([--enable-sspi Ignored. Only supported on native Windows builds.])
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ FILE
FOOTNOTES
=========

  *1 = requires OpenSSL, GnuTLS, NSS, yassl, axTLS, PolarSSL or Windows SSPI
  *1 = requires OpenSSL, GnuTLS, NSS, yassl, axTLS, PolarSSL or schannel
  *2 = requires OpenLDAP
  *3 = requires a GSSAPI-compliant library, such as Heimdal or similar.
  *4 = requires FBopenssl
+0 −1
Original line number Diff line number Diff line
@@ -185,7 +185,6 @@ endif
endif
ifdef SSPI
  CFLAGS += -DUSE_WINDOWS_SSPI
  DLL_LIBS += -lversion
ifdef SCHANNEL
  CFLAGS += -DUSE_SCHANNEL
endif
+0 −1
Original line number Diff line number Diff line
@@ -123,7 +123,6 @@ CFGSET = FALSE

!IFDEF WINDOWS_SSPI
CFLAGS = $(CFLAGS) /DUSE_WINDOWS_SSPI /I$(WINDOWS_SDK_PATH)\include
WINLIBS = $(WINLIBS) version.lib
!ENDIF

!IFDEF USE_IPV6
Loading