diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2019-08-30 17:24:06 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-08-30 17:24:06 +0200 |
| commit | 77a0fa101ed59f05ea07b03adb1cb66962fc45e7 (patch) | |
| tree | 2027439576906ec73f8e76373b40fa254ceea775 /Zend/zend_portability.h | |
| parent | 1e4cc5bf0bf9ca58683ac16fd56ad68b69c3893a (diff) | |
| download | php-git-77a0fa101ed59f05ea07b03adb1cb66962fc45e7.tar.gz | |
Reenable alloca support on ZTS
This got disabled due to an incorrect change in a preprocessor condition
in 2104bea5d756dfa40b605a4a2765a3bc4637a76c. It was not supposed to
be disabled.
Diffstat (limited to 'Zend/zend_portability.h')
| -rw-r--r-- | Zend/zend_portability.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h index 89173642d2..978f25bbfb 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h @@ -355,7 +355,7 @@ char *alloca(); #endif -#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS)) && !(defined(ZTS) && defined(HPUX)) && !defined(DARWIN) +#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(HPUX)) && !defined(DARWIN) # define ZEND_ALLOCA_MAX_SIZE (32 * 1024) # define ALLOCA_FLAG(name) \ zend_bool name; |
