mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
3e921aa9df
There are probably other similar cases around ext/, however the main reason for fixing this was for the typo (libxml > mbstring).
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE('exif', 'Exchangeable image information (EXIF) Support', 'no');
|
|
|
|
if(PHP_EXIF != 'no')
|
|
{
|
|
if(ADD_EXTENSION_DEP('exif', 'mbstring'))
|
|
{
|
|
AC_DEFINE('HAVE_EXIF', 1, 'Have EXIF Support');
|
|
|
|
EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
|
|
}
|
|
} |