diff options
author | Wez Furlong <wez@php.net> | 2003-12-02 23:17:04 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-12-02 23:17:04 +0000 |
commit | 05b9b20ed8e2f98b3fb71a227e49e11bdf7b9c6b (patch) | |
tree | 70b88eab212d192b86f10a5dedfcedb92785f840 /sapi/cli | |
parent | 30b631d9f613e1644123e9cea0285ff1f7278b08 (diff) | |
download | php-git-05b9b20ed8e2f98b3fb71a227e49e11bdf7b9c6b.tar.gz |
Add new (optional!) win32 build infrastructure.
Will follow up to internals@ shortly.
Diffstat (limited to 'sapi/cli')
-rw-r--r-- | sapi/cli/config.w32 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sapi/cli/config.w32 b/sapi/cli/config.w32 new file mode 100644 index 0000000000..9f30ad6d7c --- /dev/null +++ b/sapi/cli/config.w32 @@ -0,0 +1,9 @@ +// vim:ft=javascript +// $Id$ + +ARG_ENABLE('cli', 'Build CLI version of PHP', 'yes'); + +if (PHP_CLI == "yes") { + SAPI('cli', 'getopt.c php_cli.c', 'php.exe'); +} + |