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