mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
c58ad11f2f
And enable SSL_CONF_* in libssl, needed by lighttpd's mod_openssl. Issue #3069.
25 lines
564 B
Makefile
25 lines
564 B
Makefile
MIRROR_FROM_REP_DIR := lib/import/import-libssl.mk \
|
|
lib/symbols/libssl
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/openssl)
|
|
|
|
content: include
|
|
|
|
include:
|
|
mkdir $@
|
|
cp -r $(PORT_DIR)/include/* $@/
|
|
cp $(PORT_DIR)/include/openssl/e_os* $@/
|
|
cp -r $(PORT_DIR)/src/lib/openssl/crypto/o_time.h $@/
|
|
mkdir -p $@/crypto
|
|
cp -r $(PORT_DIR)/src/lib/openssl/crypto/constant_time_locl.h $@/crypto
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/openssl/LICENSE $@
|