1// vim:ft=javascript 2 3ARG_ENABLE('exif', 'Exchangeable image information (EXIF) Support', 'no'); 4 5if(PHP_EXIF != 'no') { 6 AC_DEFINE('HAVE_EXIF', 1, "Define to 1 if the PHP extension 'exif' is available."); 7 EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1'); 8 ADD_EXTENSION_DEP('exif', 'mbstring', true); 9} 10