diff options
| author | Shivam Mathur <shivam_jpr@hotmail.com> | 2026-04-19 23:56:29 +0530 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-04-21 09:50:45 +0200 |
| commit | 18943c394cfca8c30d5f9d9836ab8b7787761e81 (patch) | |
| tree | 70545985258b1348041d604e5ca46b5439d7082e /config.w32 | |
| parent | 15c8a7b0f36dfa14de7c6391db5565dd8e329030 (diff) | |
Add Windows support in CI
Diffstat (limited to 'config.w32')
| -rw-r--r-- | config.w32 | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,12 +2,13 @@ ARG_ENABLE("xpass", "Enable xpass support", "no"); if (PHP_XPASS != "no") { if (CHECK_LIB("crypt.lib", "xpass", PHP_XPASS) - && CHECK_HEADER_ADD_INCLUDE("crypt.h", "CLFAGS_XPASS", PHP_XPASS) + && CHECK_HEADER_ADD_INCLUDE("crypt.h", "CFLAGS_XPASS", PHP_XPASS) && CHECK_LIB("bcrypt.lib", "xpass", PHP_XPASS)) { AC_DEFINE("HAVE_XPASS", 1, "Have xpass support"); EXTENSION("xpass", "xpass.c"); AC_DEFINE("HAVE_CRYPT_YESCRYPT", 1, "Have yescrypt hash support"); AC_DEFINE("HAVE_CRYPT_SHA512", 1, "Have sha512 hash support"); + AC_DEFINE("HAVE_CRYPT_SM3", 1, "Have SM3 hash support"); } else { WARNING("xpass not enabled; libraries and headers not found"); } |
