1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

s3-waf: Add darwin to the host_os-specific checks

This commit is contained in:
Kai Blin 2010-05-25 23:57:41 +02:00
parent b2546ee557
commit 5a023e73f7

View File

@ -440,6 +440,8 @@ krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''',
elif host_os.rfind('qnx') > -1: elif host_os.rfind('qnx') > -1:
conf.DEFINE('QNX', '1') conf.DEFINE('QNX', '1')
conf.DEFINE('STAT_ST_BLOCKSIZE', '512') conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
elif (host_os.rfind('darwin') > -1):
conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
# FIXME: Add more checks here. # FIXME: Add more checks here.
else: else:
print "Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os print "Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os