# HG changeset patch # User John D # Date 1479259099 18000 # Node ID 64063cd35eb2b04834d0f5fb2c1964e0aa017514 # Parent 366dc3466a3a54c835d2a42e2348a57936005230 curl: enable winssl if compiling for windows * src/curl.mk: add --with-winssl to configure options if compiling for windows diff -r 366dc3466a3a -r 64063cd35eb2 src/curl.mk --- 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 \