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 376 B

12345678910111213
  1. // vim:ft=javascript
  2. ARG_ENABLE('snowdrift', 'snowdrift support', 'no');
  3. if (PHP_SNOWDRIFT != "no") {
  4. AC_DEFINE('HAVE_SNOWDRIFT', 1, 'snowdrift support enabled');
  5. snowdrift_source_file="snowdrift.c\
  6. src/snowflake/snowflake.c\
  7. src/snowflake/shm.c\
  8. src/snowflake/spinlock.c"
  9. EXTENSION("snowdrift", snowdrift_source_file, null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
  10. }