Skip to content

Commit 12f9b89

Browse files
authored
Remove redundant win32 include flag for apache2handler (#14576)
1 parent ca5952a commit 12f9b89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sapi/apache2handler/config.w32

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (PHP_APACHE2HANDLER != "no") {
1212
) {
1313
SAPI('apache2handler', 'mod_php.c sapi_apache2.c apache_config.c php_functions.c',
1414
'php' + PHP_VERSION + 'apache2.dll',
15-
'/D PHP_APACHE2_EXPORTS /I win32 /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
15+
'/D PHP_APACHE2_EXPORTS /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
1616
} else {
1717
WARNING("Could not find apache2 libraries/headers");
1818
}
@@ -30,7 +30,7 @@ if (PHP_APACHE2_2HANDLER != "no") {
3030
) {
3131
SAPI('apache2_2handler', 'mod_php.c sapi_apache2.c apache_config.c php_functions.c',
3232
'php' + PHP_VERSION + 'apache2_2.dll',
33-
'/D PHP_APACHE2_EXPORTS /I win32 /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1',
33+
'/D PHP_APACHE2_EXPORTS /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1',
3434
'sapi\\apache2_2handler');
3535
} else {
3636
WARNING("Could not find apache2.2 libraries/headers");
@@ -48,7 +48,7 @@ if (PHP_APACHE2_4HANDLER != "no") {
4848
) {
4949
SAPI('apache2_4handler', 'mod_php.c sapi_apache2.c apache_config.c php_functions.c',
5050
'php' + PHP_VERSION + 'apache2_4.dll',
51-
'/D PHP_APACHE2_EXPORTS /I win32 /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1',
51+
'/D PHP_APACHE2_EXPORTS /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1',
5252
'sapi\\apache2handler');
5353
} else {
5454
WARNING("Could not find apache 2.4 libraries/headers");

0 commit comments

Comments
 (0)