diff options
author | Günther Deschner <gd@samba.org> | 2011-04-22 00:49:54 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-04-22 00:49:54 +0200 |
commit | 0e003515703469e9f66f5119d401366697cdb767 (patch) | |
tree | c209e4d5a67bb389e38320f46e979fc1d8d634a8 | |
parent | a505806aa088470c74ad3fbffac223d5400481fc (diff) | |
download | samba-0e003515703469e9f66f5119d401366697cdb767.tar.gz samba-0e003515703469e9f66f5119d401366697cdb767.tar.bz2 samba-0e003515703469e9f66f5119d401366697cdb767.zip |
s3-waf: try to fix the build on sunos5.
Guenther
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 2 insertions, 0 deletions
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) |