12345678910111213141516171819202122232425262728293031323334353637 |
- #############################################################
- #
- # libcurl
- #
- #############################################################
- LIBCURL_VERSION = 7.21.2
- LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.bz2
- LIBCURL_SITE = http://curl.haxx.se/download/
- LIBCURL_INSTALL_STAGING = YES
- LIBCURL_CONF_OPT = --disable-verbose --disable-manual --enable-hidden-symbols
- ifeq ($(BR2_PACKAGE_OPENSSL),y)
- LIBCURL_DEPENDENCIES += openssl
- LIBCURL_CONF_ENV += ac_cv_lib_crypto_CRYPTO_lock=yes
- # configure adds the cross openssl dir to LD_LIBRARY_PATH which screws up
- # native stuff during the rest of configure when target == host.
- # Fix it by setting LD_LIBRARY_PATH to something sensible so those libs
- # are found first.
- LIBCURL_CONF_ENV += LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:/lib:/usr/lib
- LIBCURL_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr --with-random=/dev/urandom
- else
- LIBCURL_CONF_OPT += --without-ssl
- endif
- define LIBCURL_TARGET_CLEANUP
- rm -rf $(TARGET_DIR)/usr/bin/curl-config \
- $(if $(BR2_PACKAGE_CURL),,$(TARGET_DIR)/usr/bin/curl)
- endef
- LIBCURL_POST_INSTALL_TARGET_HOOKS += LIBCURL_TARGET_CLEANUP
- $(eval $(call AUTOTARGETS,package,libcurl))
- curl: libcurl
- curl-clean: libcurl-clean
- curl-dirclean: libcurl-dirclean
- curl-source: libcurl-source
|