config.w32   [plain text]


// 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');
	}
}