diff options
| author | Piotr Sikora <piotr@aviatrix.com> | 2025-02-12 10:40:58 +0200 |
|---|---|---|
| committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2025-02-18 16:18:10 +0300 |
| commit | 9a4090f02ab438c47178b3b5a4c15a3c769d5027 (patch) | |
| tree | 8e2a409fa355f7c3c0100edafd05a33e9aaf84bc /auto | |
| parent | f274b3f72fa9aa3b2ed9b32817ed4a88eb2256b3 (diff) | |
| download | nginx-9a4090f02ab438c47178b3b5a4c15a3c769d5027.tar.gz nginx-9a4090f02ab438c47178b3b5a4c15a3c769d5027.tar.bz2 | |
Core: fix build without libcrypt.
libcrypt is no longer part of glibc, so it might not be available.
Signed-off-by: Piotr Sikora <piotr@aviatrix.com>
Diffstat (limited to 'auto')
| -rw-r--r-- | auto/unix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -150,7 +150,7 @@ fi ngx_feature="crypt()" -ngx_feature_name= +ngx_feature_name="NGX_HAVE_CRYPT" ngx_feature_run=no ngx_feature_incs= ngx_feature_path= @@ -162,7 +162,7 @@ ngx_feature_test="crypt(\"test\", \"salt\");" if [ $ngx_found = no ]; then ngx_feature="crypt() in libcrypt" - ngx_feature_name= + ngx_feature_name="NGX_HAVE_CRYPT" ngx_feature_run=no ngx_feature_incs= ngx_feature_path= |
