xref: /PHP-7.3/ext/exif/config.m4 (revision 8d3f8ca1)
1dnl config.m4 for extension exif
2
3PHP_ARG_ENABLE(exif, whether to enable EXIF (metadata from images) support,
4[  --enable-exif           Enable EXIF (metadata from images) support])
5
6if test "$PHP_EXIF" != "no"; then
7  AC_DEFINE(HAVE_EXIF, 1, [Whether you want EXIF (metadata from images) support])
8  PHP_NEW_EXTENSION(exif, exif.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
9fi
10