mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
582311d7b4
Also adds apps/include/http_server.h. This is used so far by apps/ocsp.c and is going to be used for apps/cmp.c and will be helpful also for any future app acting as HTTP server. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11736)
19 lines
603 B
Plaintext
19 lines
603 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
|
|
|
|
IF[{- !$disabled{apps} -}]
|
|
LIBS{noinst}=../libapps.a
|
|
SOURCE[../libapps.a]=$LIBAPPSSRC $AUXLIBAPPSSRC
|
|
INCLUDE[../libapps.a]=../.. ../../include ../include
|
|
ENDIF
|