summaryrefslogtreecommitdiff
path: root/config.w32
blob: ecfe83201b34a1084f8bb91233c1301be1f39fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id: config.w32,v 1.1.1.1 2007-11-28 01:15:35 sesser Exp $
// vim:ft=javascript

ARG_ENABLE("suhosin", "whether to enable suhosin support", "yes");

if (PHP_SUHOSIN == "yes") {
	EXTENSION("suhosin", "suhosin.c sha256.c memory_limit.c treat_data.c ifilter.c post_handler.c ufilter.c rfc1867_new.c log.c header.c execute.c ex_imp.c session.c aes.c crypt.c");
	ARG_ENABLE("suhosin-experimental", "Enable experimental suhosin features", "no");

	if (PHP_SUHOSIN_EXPERIMENTAL != "no") {
		ADD_FLAG("CFLAGS_SUHOSIN", "/D SUHOSIN_EXPERIMENTAL");
		AC_DEFINE("SUHOSIN_EXPERIMENTAL", 1, "Whether to enable experimental suhosin features");
	}
}