mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 06:21:43 +08:00
065121ff19
Fixes #13944 Moved "opt_printf_stderr" out of apps.c to avoid duplicate definition in tests. Added function "asn1_string_to_time_t" including tests. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17645)
24 lines
743 B
Plaintext
24 lines
743 B
Plaintext
# Auxiliary program source
|
|
IF[{- $config{target} =~ /^(?:VC-|mingw|BC-)/ -}]
|
|
# 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 app_libctx.c apps_opt_printf.c
|
|
|
|
IF[{- !$disabled{apps} -}]
|
|
LIBS{noinst}=../libapps.a
|
|
SOURCE[../libapps.a]=$LIBAPPSSRC $AUXLIBAPPSSRC
|
|
INCLUDE[../libapps.a]=../.. ../../include ../include
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{srp} -}]
|
|
SOURCE[../libapps.a]=tlssrp_depr.c
|
|
ENDIF
|