Skip to content

Commit 1212cf1

Browse files
committed
Minor improvements
1 parent 06b7516 commit 1212cf1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

config.w32

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// $Id$
2+
// vim:ft=javascript
3+
14
ARG_ENABLE("security-flags", "Disable the compiler security flags", "yes");
25
if (PHP_SECURITY_FLAGS == "yes") {
36
ADD_FLAG("LDFLAGS", "/NXCOMPAT /DYNAMICBASE ");

zephir_parser.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
#include "config.h"
1717
#endif
1818

19-
#include "php.h"
20-
#include "php_ini.h"
21-
#include "ext/standard/info.h"
19+
#include <php.h>
20+
#include <php_ini.h>
21+
#include <ext/standard/info.h>
22+
2223
#include "zephir_parser.h"
2324

2425
extern void *xx_parse_program(zval *return_value, char *program, size_t program_length, char *file_path, zval *error_msg);

zephir_parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern zend_module_entry zephir_parser_module_entry;
3232
#endif
3333

3434
#ifdef ZTS
35-
#include "TSRM.h"
35+
#include <TSRM.h>
3636
#endif
3737

3838
#define ZEPHIR_PARSER_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(zephir_parser, v)

0 commit comments

Comments
 (0)