summaryrefslogtreecommitdiff
path: root/curl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-08-09 14:33:09 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-08-09 14:38:43 +0200
commitf05ff87ecebec36bac9e143a184c8b65f43d476b (patch)
tree4d2b61269d489c8387ce1726c88f8cbc1db9de80 /curl
parent8dd90858a2f258b673709b166b7553bb91d3b826 (diff)
curl: disable libssh2 support
Otherwise internal curl may pick up system libssh2.
Diffstat (limited to 'curl')
-rw-r--r--curl/makefile.mk2
1 files changed, 1 insertions, 1 deletions
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)