mirror of
https://github.com/moparisthebest/curl
synced 2024-12-23 08:38:49 -05:00
winbuild: Change Makefile to honor ENABLE_OPENSSL_AUTO_LOAD_CONFIG
- Made changes so that ENABLE_OPENSSL_AUTO_LOAD_CONFIG will be honored. - Also removed some ^M chars from file. Prior to this change while building on Windows platform even if we pass the ENABLE_OPENSSL_AUTO_LOAD_CONFIG option with value as "no" it does not set the CURL_DISABLE_OPENSSL_AUTO_LOAD_CONFIG flag. Closes https://github.com/curl/curl/pull/4086
This commit is contained in:
parent
8ad61c6847
commit
5feb58ca12
@ -5,7 +5,7 @@
|
|||||||
# | (__| |_| | _ <| |___
|
# | (__| |_| | _ <| |___
|
||||||
# \___|\___/|_| \_\_____|
|
# \___|\___/|_| \_\_____|
|
||||||
#
|
#
|
||||||
# Copyright (C) 1999 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
# Copyright (C) 1999 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
#
|
#
|
||||||
# This software is licensed as described in the file COPYING, which
|
# This software is licensed as described in the file COPYING, which
|
||||||
# you should have received as part of this distribution. The terms
|
# you should have received as part of this distribution. The terms
|
||||||
@ -138,6 +138,12 @@ USE_WINSSL = false
|
|||||||
|
|
||||||
!IFNDEF ENABLE_OPENSSL_AUTO_LOAD_CONFIG
|
!IFNDEF ENABLE_OPENSSL_AUTO_LOAD_CONFIG
|
||||||
ENABLE_OPENSSL_AUTO_LOAD_CONFIG = true
|
ENABLE_OPENSSL_AUTO_LOAD_CONFIG = true
|
||||||
|
!ELSEIF "$(ENABLE_OPENSSL_AUTO_LOAD_CONFIG)"=="yes"
|
||||||
|
!UNDEF ENABLE_OPENSSL_AUTO_LOAD_CONFIG
|
||||||
|
ENABLE_OPENSSL_AUTO_LOAD_CONFIG = true
|
||||||
|
!ELSEIF "$(ENABLE_OPENSSL_AUTO_LOAD_CONFIG)"=="no"
|
||||||
|
!UNDEF ENABLE_OPENSSL_AUTO_LOAD_CONFIG
|
||||||
|
ENABLE_OPENSSL_AUTO_LOAD_CONFIG = false
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
CONFIG_NAME_LIB = libcurl
|
CONFIG_NAME_LIB = libcurl
|
||||||
|
Loading…
Reference in New Issue
Block a user