1// $Id$ 2// vim:ft=javascript 3 4ARG_ENABLE("exif", "exif", "no"); 5 6if (PHP_EXIF == "yes") { 7 if (ADD_EXTENSION_DEP('exif', 'mbstring')) { 8 EXTENSION("exif", "exif.c"); 9 AC_DEFINE('HAVE_EXIF', 1, 'Have exif'); 10 } else { 11 WARNING("exif support can't be enabled, libxml is not enabled") 12 PHP_EXIF = "no" 13 } 14} 15