From 5a023e73f7b1e788b49a05318b8de264aca085f0 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Tue, 25 May 2010 23:57:41 +0200 Subject: [PATCH] s3-waf: Add darwin to the host_os-specific checks --- source3/wscript | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.11.4.GIT