From: Peter Korsgaard Date: Wed, 27 May 2009 05:18:43 +0000 (+0200) Subject: curl: make sure openssl isn't tried when the openssl package isn't enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3169b04725d45ed96059f0b14456b80ff1ac02df;p=buildroot.git curl: make sure openssl isn't tried when the openssl package isn't enabled Works around build errors caused by broken Xorg dependencies. Signed-off-by: Peter Korsgaard --- diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk index fb04da05dd..44c23170d0 100644 --- a/package/libcurl/libcurl.mk +++ b/package/libcurl/libcurl.mk @@ -19,6 +19,8 @@ LIBCURL_CONF_ENV += ac_cv_lib_crypto_CRYPTO_lock=yes # 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_ENV += --without-ssl endif $(eval $(call AUTOTARGETS,package,libcurl))