changeset 4248:64063cd35eb2

curl: enable winssl if compiling for windows * src/curl.mk: add --with-winssl to configure options if compiling for windows
author John D
date Tue, 15 Nov 2016 20:18:19 -0500
parents 366dc3466a3a
children a1e2f1eac845
files src/curl.mk
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/curl.mk	Mon Nov 14 09:58:24 2016 -0500
+++ b/src/curl.mk	Tue Nov 15 20:18:19 2016 -0500
@@ -10,6 +10,11 @@
 $(PKG)_URL      := http://curl.haxx.se/download/$($(PKG)_FILE)
 $(PKG)_DEPS     := gnutls libidn libssh2
 
+$(PKG)_CONFIGURE_OPTS :=
+ifeq ($(MXE_WINDOWS_BUILD),yes)
+    $(PKG)_CONFIGURE_OPTS := "--with-winssl"
+endif
+
 define $(PKG)_UPDATE
     $(WGET) -q -O- 'http://curl.haxx.se/download/?C=M;O=D' | \
     $(SED) -n 's,.*curl-\([0-9][^"]*\)\.tar.*,\1,p' | \
@@ -22,6 +27,7 @@
         $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
         $(ENABLE_SHARED_OR_STATIC) \
         --prefix='$(HOST_PREFIX)' \
+        $($(PKG)_CONFIGURE_OPTS) \
         --without-ssl \
         --with-gnutls \
         --with-libidn \