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/isapi | |
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/isapi')
-rw-r--r-- | sapi/isapi/config.w32 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sapi/isapi/config.w32 b/sapi/isapi/config.w32 new file mode 100644 index 0000000000..c1a9765641 --- /dev/null +++ b/sapi/isapi/config.w32 @@ -0,0 +1,9 @@ +// vim:ft=javascript +// $Id$ + +ARG_ENABLE('isapi', 'Build ISAPI version of PHP', 'yes'); + +if (PHP_ISAPI == "yes") { + SAPI('isapi', 'php4isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP4ISAPI_EXPORTS'); + ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php4isapi.def'); +} |