mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_WITH("exif", "exif", "no");
|
|
|
|
if (PHP_EXIF == "yes") {
|
|
EXTENSION("exif", "exif.c");
|
|
AC_DEFINE('HAVE_EXIF', 1, 'Have exif');
|
|
ADD_EXTENSION_DEP('exif', 'mbstring');
|
|
}
|