diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-08-08 11:16:20 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-08 04:34:35 +0200 |
commit | 07840b665f1adc6d821ef4a1aa22ca5cbfd5001c (patch) | |
tree | 52eb83bb59cfc678a1f96f9c448a759987e912b1 /source3 | |
parent | 47bffb9b9243dc72d7305cd9ec3e63e176841bf5 (diff) | |
download | samba-07840b665f1adc6d821ef4a1aa22ca5cbfd5001c.tar.gz samba-07840b665f1adc6d821ef4a1aa22ca5cbfd5001c.tar.xz samba-07840b665f1adc6d821ef4a1aa22ca5cbfd5001c.zip |
s3-waf: Fix build on FreeBSD when sunacl.h is found
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Mon Aug 8 04:34:35 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
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): |