1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

- Fix build

This commit is contained in:
Marcus Boerger
2006-07-18 23:52:09 +00:00
parent 61fd6bbebf
commit 80807ea353
2 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -425,7 +425,11 @@ static void php_zval_filter_recursive(zval *value, long filter, long flags, zval
static zval * php_filter_get_storage(long arg TSRMLS_DC) /* {{{ */
{
zval * array_ptr = NULL;
zend_bool jit_initialization = (PG(auto_globals_jit) && !PG(register_globals) && !PG(register_long_arrays));
zend_bool jit_initialization = (PG(auto_globals_jit)
#if PHP_MAJOR_VERSION < 6
&& !PG(register_globals) && !PG(register_long_arrays)
#endif
);
switch (arg) {
case PARSE_GET:
array_ptr = IF_G(get_array);
+2 -2
View File
@@ -22,13 +22,13 @@
#ifndef PHP_FILTER_H
#define PHP_FILTER_H
#include "SAPI.h"
#include "zend_API.h"
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "ext/standard/php_string.h"
#include "php_variables.h"
#include "SAPI.h"
#include "zend_API.h"
extern zend_module_entry filter_module_entry;
#define phpext_filter_ptr &filter_module_entry