diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2025-06-24 16:42:20 +0400 |
---|---|---|
committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2025-06-24 21:22:41 +0400 |
commit | b997be14f5e19942a99d90eeeee53289f5d3a3a8 (patch) | |
tree | 3252a7aa2d85c50a2254bb3b47f6df4d55424d58 | |
parent | cedb855d75ceefd7fe513f9c27c9364678582786 (diff) | |
download | nginx-b997be14f5e19942a99d90eeeee53289f5d3a3a8.tar.gz nginx-b997be14f5e19942a99d90eeeee53289f5d3a3a8.zip |
Win32: skip OpenSSL dependency generation to conserve time.
Disabling the build dependency feature is safe assuming that
nginx/Windows release zip is always built from a clean tree.
This allows to speed up total build time by around 40%.
As it may not be suitable in general, the option resides here
and not in configure.
-rw-r--r-- | misc/GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/GNUmakefile b/misc/GNUmakefile index b7e76b942..6f8a5d396 100644 --- a/misc/GNUmakefile +++ b/misc/GNUmakefile @@ -76,7 +76,8 @@ win32: --with-stream_realip_module \ --with-stream_ssl_preread_module \ --with-openssl=$(OBJS)/lib/$(OPENSSL) \ - --with-openssl-opt="no-asm no-tests -D_WIN32_WINNT=0x0501" \ + --with-openssl-opt="no-asm no-tests no-makedepend \ + -D_WIN32_WINNT=0x0501" \ --with-http_ssl_module \ --with-mail_ssl_module \ --with-stream_ssl_module |