File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -343,6 +343,12 @@ int main(void) {
343
343
[ -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 $JIT_CFLAGS] ,,
344
344
[ yes] )
345
345
346
+ PHP_INSTALL_HEADERS([ ext/opcache] , m4_normalize ( [
347
+ ZendAccelerator.h
348
+ zend_accelerator_hash.h
349
+ zend_accelerator_debug.h
350
+ ] ) )
351
+
346
352
PHP_ADD_EXTENSION_DEP(opcache, date)
347
353
PHP_ADD_EXTENSION_DEP(opcache, pcre)
348
354
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ if (PHP_OPCACHE != "no") {
18
18
zend_shared_alloc.c \
19
19
shared_alloc_win32.c", true, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
20
20
21
+
22
+ PHP_INSTALL_HEADERS("ext/opcache", "ZendAccelerator.h zend_accelerator_hash.h zend_accelerator_debug.h");
23
+
21
24
ADD_EXTENSION_DEP('opcache', 'date');
22
25
ADD_EXTENSION_DEP('opcache', 'hash');
23
26
ADD_EXTENSION_DEP('opcache', 'pcre');
Original file line number Diff line number Diff line change 53
53
static const zend_shared_memory_handlers * g_shared_alloc_handler = NULL ;
54
54
static const char * g_shared_model ;
55
55
/* pointer to globals allocated in SHM and shared across processes */
56
- zend_smm_shared_globals * smm_shared_globals ;
56
+ ZEND_EXT_API zend_smm_shared_globals * smm_shared_globals ;
57
57
58
58
#ifndef ZEND_WIN32
59
59
#ifdef ZTS
You can’t perform that action at this time.
0 commit comments