config.w32 373 B

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