File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ PHP NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.3.6
4
4
5
+ - Core:
6
+ . Fixed zend_call_stack build with Linux/uclibc-ng without thread support.
7
+ (Fabrice Fontaine)
8
+
5
9
- FPM:
6
10
. Fixed bug GH-13563 (Setting bool values via env in FPM config fails).
7
11
(Jakub Zelenka)
Original file line number Diff line number Diff line change 35
35
# include <sys/types.h>
36
36
# endif
37
37
#endif /* ZEND_WIN32 */
38
- #if defined(__linux__ ) || defined(__FreeBSD__ ) || defined(__APPLE__ ) || defined(__OpenBSD__ )
38
+ #if (defined(HAVE_PTHREAD_GETATTR_NP ) && defined(HAVE_PTHREAD_ATTR_GETSTACK )) || \
39
+ defined(__FreeBSD__ ) || defined(__APPLE__ ) || defined(__OpenBSD__ )
39
40
# include <pthread.h>
40
41
#endif
41
42
#ifdef __FreeBSD__
You can’t perform that action at this time.
0 commit comments