diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-09-23 14:30:10 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-09-23 14:52:27 +1000 |
commit | e0bcce55033f27ffa734b839e23bc731d82614f0 (patch) | |
tree | c7887e0fdf810717dfc4e5875fe87d6b4fd6bec4 /source3 | |
parent | 73bdb2a6c2f04c22780e2441a3e671722b16dfab (diff) | |
download | samba-e0bcce55033f27ffa734b839e23bc731d82614f0.tar.gz samba-e0bcce55033f27ffa734b839e23bc731d82614f0.tar.bz2 samba-e0bcce55033f27ffa734b839e23bc731d82614f0.zip |
build: Rework waf STAT_ST_BLOCKSIZE to match autoconf, with 512 as the default
The autoconf build simply has 512 as the default, without a warning. Rather than
enumerate every OS ever made, just handle the known exceptions.
Andrew Bartlett
Diffstat (limited to 'source3')
-rw-r--r-- | source3/wscript | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/source3/wscript b/source3/wscript index 23ea327d0b..dfd41c5338 100644 --- a/source3/wscript +++ b/source3/wscript @@ -287,22 +287,29 @@ utimensat vsyslog _write __write __xstat conf.DEFINE('STAT_ST_BLOCKSIZE', '512') elif (host_os.rfind('darwin') > -1): conf.DEFINE('DARWINOS', 1) - conf.DEFINE('STAT_ST_BLOCKSIZE', '512') conf.ADD_CFLAGS('-fno-common') + conf.DEFINE('STAT_ST_BLOCKSIZE', '512') elif (host_os.rfind('freebsd') > -1): if conf.CHECK_HEADERS('sunacl.h'): 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): - conf.DEFINE('STAT_ST_BLOCKSIZE', '512') - elif (host_os.rfind('openbsd') > -1): + elif (host_os.rfind('irix') > -1): + conf.DEFINE('IRIX', 1) conf.DEFINE('STAT_ST_BLOCKSIZE', '512') - elif (host_os.rfind('sunos') > -1): + elif (host_os.rfind('aix') > -1): + conf.DEFINE('AIX', 1) + conf.DEFINE('STAT_ST_BLOCKSIZE', 'DEV_BSIZE') + elif (host_os.rfind('hpux') > -1): + conf.DEFINE('HPUX', 1) + conf.DEFINE('STAT_ST_BLOCKSIZE', '8192') + elif (host_os.rfind('osf') > -1): + conf.DEFINE('OSF1', 1) conf.DEFINE('STAT_ST_BLOCKSIZE', '512') + # FIXME: Add more checks here. else: - Logs.warn("Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os) + conf.DEFINE('STAT_ST_BLOCKSIZE', '512') if Options.options.with_acl_support: if (host_os.rfind('sysv5') > -1) and conf.CHECK_FUNCS_IN('sec', 'facl', checklibc=True): |