Browse Source

Add note to libcurl build flags on Mac.

tags/v1.1.3
Andrew Belt 5 years ago
parent
commit
c0db4988a9
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      dep/Makefile

+ 2
- 1
dep/Makefile View File

@@ -126,9 +126,10 @@ CURL_FLAGS += --with-ssl="$(DEP_PATH)"
CURL_DEPS += $(openssl) CURL_DEPS += $(openssl)
endif endif
ifdef ARCH_MAC ifdef ARCH_MAC
# Since Rack supports Mac 10.7 but Apple's Secure Transport only supports TLS 1.0 on that OS, use OpenSSL instead.
# CURL_FLAGS += --with-secure-transport
CURL_FLAGS += --with-ssl="$(DEP_PATH)" CURL_FLAGS += --with-ssl="$(DEP_PATH)"
CURL_DEPS += $(openssl) CURL_DEPS += $(openssl)
# CURL_FLAGS += --with-secure-transport
endif endif
ifdef ARCH_WIN ifdef ARCH_WIN
CURL_FLAGS += --with-schannel CURL_FLAGS += --with-schannel


Loading…
Cancel
Save