summaryrefslogtreecommitdiff
path: root/ext/exif/config.w32
blob: 595e71bda0923780f57d1fbf03be8e0e0380fa27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$
// vim:ft=javascript

ARG_ENABLE("exif", "exif", "no");

if (PHP_EXIF == "yes") {
	if (ADD_EXTENSION_DEP('exif', 'mbstring')) {
		EXTENSION("exif", "exif.c", null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
		AC_DEFINE('HAVE_EXIF', 1, 'Have exif');
	} else {
		WARNING("exif support can't be enabled, libxml is not enabled")
		PHP_EXIF = "no"
	}
}