config.w32 299 B

12345678910111213
  1. // vim:ft=javascript
  2. ARG_ENABLE('exif', 'Exchangeable image information (EXIF) Support', 'no');
  3. if(PHP_EXIF != 'no')
  4. {
  5. if(ADD_EXTENSION_DEP('exif', 'mbstring'))
  6. {
  7. AC_DEFINE('HAVE_EXIF', 1, 'Have EXIF Support');
  8. EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
  9. }
  10. }