14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
// 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');
|
|
}
|
|
}
|