mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +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
23 lines
634 B
Plaintext
23 lines
634 B
Plaintext
modules-$(CONFIG_GPG2) += libksba
|
|
libksba_version := 1.3.5
|
|
libksba_dir := libksba-$(libksba_version)
|
|
libksba_tar := libksba-$(libksba_version).tar.bz2
|
|
libksba_url := https://gnupg.org/ftp/gcrypt/libksba/$(libksba_tar)
|
|
libksba_hash := 41444fd7a6ff73a79ad9728f985e71c9ba8cd3e5e53358e70d5f066d35c1a340
|
|
|
|
libksba_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host x86_64-linux-musl \
|
|
--prefix "/" \
|
|
--disable-static \
|
|
--with-gpg-error-prefix="$(INSTALL)" \
|
|
|
|
libksba_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libksba_libraries := src/.libs/libksba.so.8
|
|
|
|
libksba_depends := libgpg-error $(musl_dep)
|