mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

This removes the --enable-opcache/--disable-opcache configure switch. OPcache is now always builtin. The default value of opcache.enable and opcache.enable_cli is unchanged. RFC: https://wiki.php.net/rfc/make_opcache_required Closes GH-18961. Co-authored-by: Tim Düsterhus <tim@tideways-gmbh.com>
34 lines
1.7 KiB
C
34 lines
1.7 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Zend OPcache |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| https://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
|
| Zeev Suraski <zeev@php.net> |
|
|
| Stanislav Malyshev <stas@zend.com> |
|
|
| Dmitry Stogov <dmitry@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef ZEND_ACCELERATOR_MODULE_H
|
|
#define ZEND_ACCELERATOR_MODULE_H
|
|
|
|
#include "Zend/zend_modules.h"
|
|
|
|
#define phpext_opcache_ptr &opcache_module_entry
|
|
extern zend_module_entry opcache_module_entry;
|
|
|
|
void zend_accel_register_ini_entries(void);
|
|
|
|
void zend_accel_override_file_functions(void);
|
|
|
|
#endif /* _ZEND_ACCELERATOR_MODULE_H */
|