blob: 38466c809cfb2631b1d69b44519e233d481b96c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// $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"
}
}
|