summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-04-22 00:49:54 +0200
committerGünther Deschner <gd@samba.org>2011-04-22 00:49:54 +0200
commit0e003515703469e9f66f5119d401366697cdb767 (patch)
treec209e4d5a67bb389e38320f46e979fc1d8d634a8
parenta505806aa088470c74ad3fbffac223d5400481fc (diff)
downloadsamba-0e003515703469e9f66f5119d401366697cdb767.tar.gz
s3-waf: try to fix the build on sunos5.
Guenther
-rw-r--r--source3/wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript
index fa51983bc64..49f11f2e5b2 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)