diff options
author | Kai Blin <kai@samba.org> | 2010-05-25 23:57:41 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2010-05-26 00:28:34 +0200 |
commit | 5a023e73f7b1e788b49a05318b8de264aca085f0 (patch) | |
tree | 440a736f6cd5ef70b12a27c4e38f9ba6ab12040a /source3/wscript | |
parent | b2546ee5571e644d3cb784f33517bf9f28c134d7 (diff) | |
download | samba-5a023e73f7b1e788b49a05318b8de264aca085f0.tar.gz |
s3-waf: Add darwin to the host_os-specific checks
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript index 3e290c8473b..2695073cd2d 100644 --- a/source3/wscript +++ b/source3/wscript @@ -440,6 +440,8 @@ krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''', elif host_os.rfind('qnx') > -1: conf.DEFINE('QNX', '1') conf.DEFINE('STAT_ST_BLOCKSIZE', '512') + elif (host_os.rfind('darwin') > -1): + conf.DEFINE('STAT_ST_BLOCKSIZE', '512') # FIXME: Add more checks here. else: print "Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os |