diff options
author | Jani Taskinen <jani@php.net> | 2007-10-01 12:40:54 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-10-01 12:40:54 +0000 |
commit | 2bc631fb4040b731388fb126c2ca76a06d3989d1 (patch) | |
tree | dbfc1e424304b881f3cb6eca8ab7d9d22b75d6b2 /sapi/cli/config.w32 | |
parent | 27e8fa0d31950854c78580264e28008e7f46325d (diff) | |
download | php-git-2bc631fb4040b731388fb126c2ca76a06d3989d1.tar.gz |
MFH:- Added common getopt implementation to core.
MFH:- Added long-option feature to getopt().
MFH:- Made getopt() available on win32 systems.
MFH: Patch by: David Soria Parra <dsp@php.net>
[DOC]: These changes will be available from 5.3+
# Note: Fixed also tests and synced basic_functions.c with HEAD.
Diffstat (limited to 'sapi/cli/config.w32')
-rw-r--r-- | sapi/cli/config.w32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cli/config.w32 b/sapi/cli/config.w32 index 98ca1d0cc3..a30e7cec6a 100644 --- a/sapi/cli/config.w32 +++ b/sapi/cli/config.w32 @@ -6,7 +6,7 @@ ARG_ENABLE('crt-debug', 'Extra CRT debugging', 'no'); ARG_ENABLE('cli-win32', 'Build console-less CLI version of PHP', 'no'); if (PHP_CLI == "yes") { - SAPI('cli', 'getopt.c php_cli.c php_cli_readline.c', 'php.exe'); + SAPI('cli', '..\\..\\main\\getopt.c php_cli.c php_cli_readline.c', 'php.exe'); if (PHP_CRT_DEBUG == "yes") { ADD_FLAG("CFLAGS_CLI", "/D PHP_WIN32_DEBUG_HEAP"); } @@ -14,7 +14,7 @@ if (PHP_CLI == "yes") { } if (PHP_CLI_WIN32 == "yes") { - SAPI('cli_win32', 'getopt.c cli_win32.c php_cli_readline.c', 'php-win.exe'); + SAPI('cli_win32', '..\\..\\main\\getopt.c cli_win32.c php_cli_readline.c', 'php-win.exe'); ADD_FLAG("LDFLAGS_CLI_WIN32", "/stack:8388608"); } |