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