mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
5b6bd8459f
The new 'verify' component facilitates the code of GnuPG to verify detached OpenPGP signatures against public keys. Since GnuPG depends on libgcrypt and libgpg-error, the patch adds these libraries to the libports repository. Fixes #2640
16 lines
465 B
Makefile
16 lines
465 B
Makefile
LIBGPG_ERROR_DIR := $(call select_from_ports,libgcrypt)/src/lib/libgpg-error
|
|
LIBGPG_ERROR_SRC_DIR := $(LIBGPG_ERROR_DIR)/src
|
|
|
|
LIBS := libc
|
|
|
|
SRC_C := visibility.c code-from-errno.c init.c estream.c estream-printf.c \
|
|
strerror.c code-to-errno.c posix-lock.c posix-thread.c
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/libgpg-error $(LIBGPG_ERROR_SRC_DIR)
|
|
|
|
CC_OPT += -DHAVE_CONFIG_H
|
|
|
|
include $(REP_DIR)/lib/import/import-libgcrypt.mk
|
|
|
|
vpath %.c $(LIBGPG_ERROR_SRC_DIR)
|