mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
41976c7ab6
- use MESSAGE in mysql* - use correct CFLAGS for ext/libxml headers
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
// $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"
|
|
}
|
|
}
|