packages-libs-curl-disable-libopenssl.patch 767 B

12345678910111213141516171819202122232425262728293031
  1. Index: libs/curl/Makefile
  2. ===================================================================
  3. --- libs/curl/Makefile (revision 38031)
  4. +++ libs/curl/Makefile (working copy)
  5. @@ -46,7 +46,7 @@
  6. $(call Package/curl/Default)
  7. SECTION:=libs
  8. CATEGORY:=Libraries
  9. - DEPENDS:=+libopenssl +zlib
  10. + DEPENDS:=+zlib
  11. TITLE:=A client-side URL transfer library
  12. endef
  13. @@ -73,7 +73,7 @@
  14. --enable-tftp \
  15. --disable-verbose \
  16. --with-random="/dev/urandom" \
  17. - --with-ssl="$(STAGING_DIR)/usr" \
  18. + --without-ssl \
  19. --without-ca-bundle \
  20. --without-gnutls \
  21. --without-krb4 \
  22. @@ -84,7 +84,7 @@
  23. $(call autoconf_bool,CONFIG_IPV6,ipv6) \
  24. CONFIGURE_VARS += \
  25. - LIBS="-lcrypto -lssl -lz" \
  26. + LIBS="-lz" \
  27. CC="$(filter-out ccache,$(TARGET_CC))"
  28. define Build/Compile