mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
8b47ede9e6
libgcrypt depends on libgpg-error, but it needs to know where the gpg-error-config utility is. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
573 B
Makefile
21 lines
573 B
Makefile
#############################################################
|
|
#
|
|
# libgcrypt
|
|
#
|
|
#############################################################
|
|
LIBGCRYPT_VERSION:=1.4.5
|
|
LIBGCRYPT_SOURCE:=libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
|
|
LIBGCRYPT_SITE:=ftp://ftp.gnupg.org/gcrypt/libgcrypt
|
|
LIBGCRYPT_INSTALL_STAGING = YES
|
|
LIBGCRYPT_INSTALL_TARGET = YES
|
|
|
|
LIBGCRYPT_CONF_ENV = \
|
|
ac_cv_sys_symbol_underscore=no
|
|
LIBGCRYPT_CONF_OPT = \
|
|
--disable-optimization \
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
|
|
LIBGCRYPT_DEPENDENCIES = libgpg-error
|
|
|
|
$(eval $(call AUTOTARGETS,package,libgcrypt))
|