mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

This syncs all help texts of extension preprocessor macros to the same style "Define to 1 if the PHP extension '<ext>' is available.". [skip ci]
13 lines
335 B
JavaScript
13 lines
335 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, "Define to 1 if the PHP extension 'exif' is available.");
|
|
|
|
EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
|
|
}
|
|
}
|