mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00

There are probably other similar cases around ext/, however the main reason for fixing this was for the typo (libxml > mbstring).
14 lines
No EOL
306 B
JavaScript
14 lines
No EOL
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');
|
|
}
|
|
} |