diff options
-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 |