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

14 lines
308 B

// $Id$
// vim:ft=javascript
ARG_ENABLE("exif", "exif", "no");
if (PHP_EXIF == "yes") {
if (ADD_EXTENSION_DEP('exif', 'mbstring')) {
EXTENSION("exif", "exif.c");
AC_DEFINE('HAVE_EXIF', 1, 'Have exif');
} else {
WARNING("exif support can't be enabled, libxml is not enabled")
PHP_EXIF = "no"
}
}