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

ARG_ENABLE("spl", "SPL (Standard PHP Library) support", "yes");

if (PHP_SPL != "no") {
	if (PHP_SPL_SHARED) {
		ERROR("SPL cannot be compiled as a shared ext");
	}
	EXTENSION("spl", "php_spl.c spl_functions.c spl_engine.c spl_iterators.c spl_array.c spl_directory.c spl_sxe.c");
	AC_DEFINE('HAVE_SPL', 1);
}