summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_php_sapi.c
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-05-20 11:18:03 +0300
committerRemi Collet <remi@remirepo.net>2020-05-20 11:18:03 +0300
commit140b81208e83569913aa81f964eb64e15940d897 (patch)
tree5dee4b28e84e210958c963f6d3dfbcdd4c330ba3 /src/nxt_php_sapi.c
parentd0de6df83987a7e8e25fab9ba5f274b993c7f094 (diff)
downloadunit-140b81208e83569913aa81f964eb64e15940d897.tar.gz
unit-140b81208e83569913aa81f964eb64e15940d897.tar.bz2
PHP: building with PHP 8 (development version).
Diffstat (limited to 'src/nxt_php_sapi.c')
-rw-r--r--src/nxt_php_sapi.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nxt_php_sapi.c b/src/nxt_php_sapi.c
index ccbdd475..d3c23c31 100644
--- a/src/nxt_php_sapi.c
+++ b/src/nxt_php_sapi.c
@@ -29,6 +29,14 @@
#define NXT_PHP7 1
#endif
+/* PHP 8 */
+#ifndef TSRMLS_CC
+#define TSRMLS_CC
+#define TSRMLS_DC
+#define TSRMLS_D void
+#define TSRMLS_C
+#endif
+
typedef struct {
nxt_str_t root;