Skip to content

Commit 3ebc822

Browse files
committed
Add missing includes
1 parent ca28152 commit 3ebc822

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

Zend/zend_extensions.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
*/
1919

2020
#include "zend_extensions.h"
21+
#include "zend_globals.h"
2122
#include "zend_system_id.h"
2223

2324
ZEND_API zend_llist zend_extensions;

ext/ffi/ffi.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "zend_weakrefs.h"
2828
#include "main/SAPI.h"
2929
#include "zend_observer.h"
30+
#include "zend_globals.h"
3031

3132
#include <ffi.h>
3233

ext/standard/dl.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
#endif
3939
#endif /* defined(HAVE_LIBDL) */
4040

41+
#include <Zend/zend_globals.h>
42+
4143
/* {{{ Load a PHP extension at runtime */
4244
PHPAPI PHP_FUNCTION(dl)
4345
{

sapi/litespeed/lsapilib.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9393
#endif
9494

9595
#include <Zend/zend_portability.h>
96+
#include <Zend/zend_globals.h>
9697

9798
struct lsapi_MD5Context {
9899
uint32 buf[4];

sapi/litespeed/lscriu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8585
#include "lscriu.h"
8686

8787
#include <Zend/zend_portability.h>
88+
#include <Zend/zend_globals.h>
8889

8990
#define LSCRIU_PATH 256
9091

sapi/phpdbg/phpdbg_prompt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "zend_exceptions.h"
2424
#include "zend_vm.h"
2525
#include "zend_generators.h"
26+
#include "zend_globals.h"
2627
#include "zend_interfaces.h"
2728
#include "zend_smart_str.h"
2829
#include "phpdbg.h"

0 commit comments

Comments
 (0)