130-dont-build-tests-fuzz.patch 967 B

1234567891011121314151617181920212223242526272829
  1. From e2339aa9c68837089d17cf309022cee497fe2412 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. This shortens build time.
  6. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
  7. --- a/Configure
  8. +++ b/Configure
  9. @@ -299,7 +299,7 @@ my $auto_threads=1; # enable threads
  10. my $default_ranlib;
  11. # Top level directories to build
  12. -$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
  13. +$config{dirs} = [ "crypto", "ssl", "engines", "apps", "util", "tools" ];
  14. # crypto/ subdirectories to build
  15. $config{sdirs} = [
  16. "objects",
  17. @@ -311,7 +311,7 @@ $config{sdirs} = [
  18. "cms", "ts", "srp", "cmac", "ct", "async", "kdf", "store"
  19. ];
  20. # test/ subdirectories to build
  21. -$config{tdirs} = [ "ossl_shim" ];
  22. +$config{tdirs} = [];
  23. # Known TLS and DTLS protocols
  24. my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);