xref: /PHP-5.5/sapi/isapi/config.w32 (revision 7d4dfa8e)
1// vim:ft=javascript
2// $Id$
3
4ARG_ENABLE('isapi', 'Build ISAPI version of PHP', 'no');
5
6if (PHP_ISAPI == "yes") {
7	if (PHP_ZTS == "no") {
8		WARNING("ISAPI module requires an --enable-zts build of PHP");
9	} else {
10		SAPI('isapi', 'php5isapi.c', 'php' + PHP_VERSION + 'isapi.dll', '/D PHP5ISAPI_EXPORTS');
11		ADD_FLAG('LDFLAGS_ISAPI', '/DEF:sapi\\isapi\\php5isapi.def');
12	}
13}
14