xref: /PHP-7.4/ext/exif/config.w32 (revision 1ad08256)
1// vim:ft=javascript
2
3ARG_ENABLE('exif', 'Exchangeable image information (EXIF) Support', 'no');
4
5if(PHP_EXIF != 'no')
6{
7	if(ADD_EXTENSION_DEP('exif', 'mbstring'))
8	{
9		AC_DEFINE('HAVE_EXIF', 1, 'Have EXIF Support');
10
11		EXTENSION('exif', 'exif.c', null, '/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
12	}
13}
14