mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
sngrep: fix libgcrypt handling
Fixes: http://autobuild.buildroot.net/results/f1c6494133806b9fc26ae3ce9e9c6a22fa2eda6f/ Commit 6205b75873c (sngrep: gnutls support also needs libgcrypt) ensured that --with-gnutls is only used when both gnutls and libgcrypt are enabled, but it didn't ensure libgcrypt gets built before sngrep or told the configure script where to find libgcrypt-config, breaking the build. Fix both issues. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
22e27da265
commit
ae7d59eaae
@ -22,7 +22,8 @@ SNGREP_DEPENDENCIES += openssl
|
|||||||
SNGREP_CONF_OPTS += --with-openssl --without-gnutls
|
SNGREP_CONF_OPTS += --with-openssl --without-gnutls
|
||||||
# gnutls support also requires libgcrypt
|
# gnutls support also requires libgcrypt
|
||||||
else ifeq ($(BR2_PACKAGE_GNUTLS)$(BR2_PACKAGE_LIBGCRYPT),yy)
|
else ifeq ($(BR2_PACKAGE_GNUTLS)$(BR2_PACKAGE_LIBGCRYPT),yy)
|
||||||
SNGREP_DEPENDENCIES += gnutls
|
SNGREP_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||||
|
SNGREP_DEPENDENCIES += gnutls libgcrypt
|
||||||
SNGREP_CONF_OPTS += --with-gnutls --without-openssl
|
SNGREP_CONF_OPTS += --with-gnutls --without-openssl
|
||||||
else
|
else
|
||||||
SNGREP_CONF_OPTS += --without-gnutls --without-openssl
|
SNGREP_CONF_OPTS += --without-gnutls --without-openssl
|
||||||
|
Loading…
x
Reference in New Issue
Block a user