From 0e003515703469e9f66f5119d401366697cdb767 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 22 Apr 2011 00:49:54 +0200 Subject: s3-waf: try to fix the build on sunos5. Guenther --- source3/wscript | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/wscript') diff --git a/source3/wscript b/source3/wscript index fa51983bc6..49f11f2e5b 100644 --- a/source3/wscript +++ b/source3/wscript @@ -334,6 +334,8 @@ utimensat vsyslog _write __write __xstat conf.DEFINE('STAT_ST_BLOCKSIZE', '512') elif (host_os.rfind('openbsd') > -1): conf.DEFINE('STAT_ST_BLOCKSIZE', '512') + elif (host_os.rfind('sunos') > -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) -- cgit