Skip to content

Commit b73358d

Browse files
committed
Drop PHP major version from source files
While it may make some sense to have the PHP major version in the names of the binaries[1], there is no reason to have it in the names of the source files. [1] <php#3769>
1 parent ea53748 commit b73358d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

sapi/isapi/config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if (PHP_ISAPI == "yes") {
66
if (PHP_ZTS == "no") {
77
WARNING("ISAPI module requires an --enable-zts build of PHP");
88
} else {
9-
SAPI('isapi', 'php7isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP7ISAPI_EXPORTS /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
10-
ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php7isapi.def');
9+
SAPI('isapi', 'php_isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP7ISAPI_EXPORTS /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
10+
ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php_isapi.def');
1111
}
1212
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)