1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Zend/zend_call_stack.h: fix missing include on Windows (clang compat) (#20847)

Co-authored-by: Tim Düsterhus <tim@tideways-gmbh.com>
This commit is contained in:
Kévin Dunglas
2026-01-29 10:38:10 +01:00
committed by GitHub
parent 3037526810
commit 371422b9b9
2 changed files with 6 additions and 0 deletions

3
NEWS
View File

@@ -9,6 +9,9 @@ PHP NEWS
. Fixed bug GH-21055 (connection attribute status typo for GSS negotiation).
(lsaos)
- Windows:
. Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)
12 Feb 2026, PHP 8.4.18
- Core:

View File

@@ -21,6 +21,9 @@
#include "zend.h"
#include "zend_portability.h"
#ifdef _MSC_VER
# include <intrin.h>
#endif
#ifdef __APPLE__
# include <pthread.h>
#endif