You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.w32 498 B

123456789101112131415161718
  1. // $Id$
  2. // vim:ft=javascript
  3. // If your extension references something external, use ARG_WITH
  4. // ARG_WITH("snowdrift", "for snowdrift support", "no");
  5. // Otherwise, use ARG_ENABLE
  6. ARG_ENABLE("snowdrift", "enable snowdrift support", "no");
  7. if (PHP_SNOWDRIFT != "no") {
  8. snowdrift_source_file="snowdrift.c\
  9. src/snowflake/snowflake.c\
  10. src/snowflake/shm.c\
  11. src/snowflake/spinlock.c
  12. "
  13. EXTENSION("snowdrift", $snowdrift_source_file, PHP_EXTNAME_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
  14. }