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:
3
NEWS
3
NEWS
@@ -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:
|
||||
|
||||
@@ -21,6 +21,9 @@
|
||||
|
||||
#include "zend.h"
|
||||
#include "zend_portability.h"
|
||||
#ifdef _MSC_VER
|
||||
# include <intrin.h>
|
||||
#endif
|
||||
#ifdef __APPLE__
|
||||
# include <pthread.h>
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user