summaryrefslogtreecommitdiff
path: root/sapi/cli/config.w32
diff options
context:
space:
mode:
authorKeyur Govande <kgovande@gmail.com>2013-03-07 18:54:34 +0000
committerKeyur Govande <kgovande@gmail.com>2013-03-07 18:54:34 +0000
commita0a995cff356a6e7526188ad1979fac6c24b9e7e (patch)
tree9d2660c6174f6dcab5f11a1418dc3dbbd585ffed /sapi/cli/config.w32
parentd77eb411ea5d80379ee92a908f543b91fa293383 (diff)
downloadphp-git-a0a995cff356a6e7526188ad1979fac6c24b9e7e.tar.gz
Support for CLI process title (https://wiki.php.net/rfc/cli_process_title)
A new commit into branch 5.5
Diffstat (limited to 'sapi/cli/config.w32')
-rw-r--r--sapi/cli/config.w324
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cli/config.w32 b/sapi/cli/config.w32
index 4d0dad58e8..adcbb2b496 100644
--- a/sapi/cli/config.w32
+++ b/sapi/cli/config.w32
@@ -6,7 +6,7 @@ ARG_ENABLE('crt-debug', 'Enable CRT memory dumps for debugging sent to STDERR',
ARG_ENABLE('cli-win32', 'Build console-less CLI version of PHP', 'no');
if (PHP_CLI == "yes") {
- SAPI('cli', 'php_cli.c php_http_parser.c php_cli_server.c', 'php.exe');
+ SAPI('cli', 'php_cli.c php_http_parser.c php_cli_server.c php_cli_process_title.c ps_title.c', 'php.exe');
ADD_FLAG("LIBS_CLI", "ws2_32.lib");
if (PHP_CRT_DEBUG == "yes") {
ADD_FLAG("CFLAGS_CLI", "/D PHP_WIN32_DEBUG_HEAP");
@@ -15,7 +15,7 @@ if (PHP_CLI == "yes") {
}
if (PHP_CLI_WIN32 == "yes") {
- SAPI('cli_win32', 'cli_win32.c', 'php-win.exe');
+ SAPI('cli_win32', 'cli_win32.c php_cli_process_title.c ps_title.c', 'php-win.exe');
ADD_FLAG("LDFLAGS_CLI_WIN32", "/stack:8388608");
}