mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
0b27381fd5
The idea is to be able to have our apps load engine keys using a URI: org.openssl.engine:{engineid}:{keyid} This is legacy, but added for the time being to support keys given to the application like this: -engine {engineid} -key {keyid} -keyform ENGINE This latter form is recognised internally, and rewritten into the URI form. Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/13570)
20 lines
638 B
Plaintext
20 lines
638 B
Plaintext
# Auxiliary program source
|
|
IF[{- $config{target} =~ /^(?:VC-|mingw)/ -}]
|
|
# It's called 'init', but doesn't have much 'init' in it...
|
|
$AUXLIBAPPSSRC=win32_init.c
|
|
ENDIF
|
|
IF[{- $config{target} =~ /^vms-/ -}]
|
|
$AUXLIBAPPSSRC=vms_term_sock.c vms_decc_argv.c
|
|
ENDIF
|
|
|
|
# Source for libapps
|
|
$LIBAPPSSRC=apps.c apps_ui.c opt.c fmt.c s_cb.c s_socket.c app_rand.c \
|
|
columns.c app_params.c names.c app_provider.c app_x509.c http_server.c \
|
|
engine.c engine_loader.c
|
|
|
|
IF[{- !$disabled{apps} -}]
|
|
LIBS{noinst}=../libapps.a
|
|
SOURCE[../libapps.a]=$LIBAPPSSRC $AUXLIBAPPSSRC
|
|
INCLUDE[../libapps.a]=../.. ../../include ../include
|
|
ENDIF
|