ipq40xx: only include ath10k-board-qca4019 for the generic subtarget
[openwrt/staging/chunkeey.git] / package / libs / openssl / patches / 130-dont-build-tests-fuzz.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Eneas U de Queiroz <cote2004-github@yahoo.com>
3 Date: Thu, 27 Sep 2018 08:34:38 -0300
4 Subject: Do not build tests and fuzz directories
5
6 This shortens build time.
7
8 Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
9
10 diff --git a/Configure b/Configure
11 --- a/Configure
12 +++ b/Configure
13 @@ -318,7 +318,7 @@ my $auto_threads=1; # enable threads automatically? true by default
14 my $default_ranlib;
15
16 # Top level directories to build
17 -$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
18 +$config{dirs} = [ "crypto", "ssl", "engines", "apps", "util", "tools" ];
19 # crypto/ subdirectories to build
20 $config{sdirs} = [
21 "objects",
22 @@ -330,7 +330,7 @@ $config{sdirs} = [
23 "cms", "ts", "srp", "cmac", "ct", "async", "kdf", "store"
24 ];
25 # test/ subdirectories to build
26 -$config{tdirs} = [ "ossl_shim" ];
27 +$config{tdirs} = [];
28
29 # Known TLS and DTLS protocols
30 my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);