mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-22 06:17:52 +00:00
972c25de7d
- Remove unrecognized configure options - fixes gawk issue #668 by upgrading to libgpg-error 1.37 instead of patching 1.32 for regex change (fixed upstream) - move patches so they match new versions for libassuan, gpg and libgcrypt (no change) Version change: - gpg 2.2.10 -> 2.2.20 - libassuan 2.5.1 -> 2.5.3 - libgcrypt 1.8.3 -> 1.8.5 - libgpg-error 1.32 -> 1.37 Size changes: - gpg 886.5 -> 911.3 kB - gpg-agent: 371.9 -> 376.0 kB - scdaemon: 399.5 -> 407.8 kB - libgpg-error.so.0 125.9 -> 130.0 kB Unrecognized options on gpg2 toolstack: - disable-nls and disable-asm disable-keyserver-helpers disable-hkp disable-finger disable-dns-srv disable-dns-cert and disable-wks-server
26 lines
741 B
Plaintext
26 lines
741 B
Plaintext
modules-$(CONFIG_GPG2) += libgpg-error
|
|
libgpg-error_version := 1.37
|
|
libgpg-error_dir := libgpg-error-$(libgpg-error_version)
|
|
libgpg-error_tar := libgpg-error-$(libgpg-error_version).tar.bz2
|
|
libgpg-error_url := https://gnupg.org/ftp/gcrypt/libgpg-error/$(libgpg-error_tar)
|
|
libgpg-error_hash := b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763
|
|
|
|
libgpg-error_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--prefix "/" \
|
|
--host=x86_64-linux-musl \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--disable-languages \
|
|
--disable-doc \
|
|
--disable-tests \
|
|
|
|
libgpg-error_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libgpg-error_libraries := src/.libs/libgpg-error.so.0
|
|
|
|
libgpg-error_depends := $(musl_dep)
|