From f05ff87ecebec36bac9e143a184c8b65f43d476b Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 9 Aug 2011 14:33:09 +0200 Subject: [PATCH] curl: disable libssh2 support Otherwise internal curl may pick up system libssh2. --- curl/makefile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl/makefile.mk b/curl/makefile.mk index dfc5720e882a..c2a92e71fe08 100644 --- a/curl/makefile.mk +++ b/curl/makefile.mk @@ -84,7 +84,7 @@ CONFIGURE_FLAGS=--disable-shared .ELSE CONFIGURE_FLAGS=--disable-static .ENDIF -CONFIGURE_FLAGS+= --without-ssl --without-libidn --enable-ftp --enable-ipv6 --enable-http --disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict CPPFLAGS="$(curl_CFLAGS)" LDFLAGS="$(curl_LDFLAGS)" +CONFIGURE_FLAGS+= --without-ssl --without-libidn --enable-ftp --enable-ipv6 --enable-http --disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict --without-libssh2 CPPFLAGS="$(curl_CFLAGS)" LDFLAGS="$(curl_LDFLAGS)" .IF "$(CROSS_COMPILING)"=="YES" CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)