From: Richard Levitte Date: Fri, 5 Aug 2016 10:54:57 +0000 (+0200) Subject: The capi engine uses stdio, so don't build it when configuring 'no-stdio' X-Git-Tag: OpenSSL_1_1_0~255 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=25d498c1761bf04f415900d4b64d14ccdbce3e30 The capi engine uses stdio, so don't build it when configuring 'no-stdio' Reviewed-by: Rich Salz --- diff --git a/Configure b/Configure index d4f67aba43..bf5b2c667c 100755 --- a/Configure +++ b/Configure @@ -437,7 +437,7 @@ my @disable_cascades = ( # no-autoalginit is only useful when building non-shared "autoalginit" => [ "shared", "apps" ], - "stdio" => [ "apps" ], + "stdio" => [ "apps", "capieng" ], "apps" => [ "tests" ], "comp" => [ "zlib" ], sub { !$disabled{"unit-test"} } => [ "heartbeats" ],