From 07840b665f1adc6d821ef4a1aa22ca5cbfd5001c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 8 Aug 2011 11:16:20 +1000 Subject: s3-waf: Fix build on FreeBSD when sunacl.h is found Autobuild-User: Andrew Bartlett Autobuild-Date: Mon Aug 8 04:34:35 CEST 2011 on sn-devel-104 --- source3/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/wscript b/source3/wscript index 3164276499..f7c12a83bf 100644 --- a/source3/wscript +++ b/source3/wscript @@ -351,7 +351,7 @@ utimensat vsyslog _write __write __xstat conf.ADD_CFLAGS('-fno-common') elif (host_os.rfind('freebsd') > -1): if conf.CHECK_HEADERS('sunacl.h'): - conf.define('HAVE_FREEBSD_SUNACL_H', '1') + conf.DEFINE('HAVE_FREEBSD_SUNACL_H', '1') conf.CHECK_FUNCS_IN('acl', 'sunacl') conf.DEFINE('STAT_ST_BLOCKSIZE', '512') elif (host_os.rfind('netbsd') > -1): -- cgit