summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2012-04-09 11:04:07 -0700
committerJeremy Allison <jra@samba.org>2012-04-09 21:40:40 +0200
commit5701a4d8611ad1e310b76b00b146b0902c9b34ff (patch)
treee73924791ec3c12f796836cd1827cef1561b9a97 /source3/wscript
parent5184f41cd8f51fd426bb6b7d6fea657df44dd8a4 (diff)
downloadsamba-5701a4d8611ad1e310b76b00b146b0902c9b34ff.tar.gz
samba-5701a4d8611ad1e310b76b00b146b0902c9b34ff.tar.bz2
samba-5701a4d8611ad1e310b76b00b146b0902c9b34ff.zip
Move blksize_t and blkcnt_t to replace.h from includes.h. Should help with platforms that don't have these.
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Mon Apr 9 21:40:42 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/wscript b/source3/wscript
index 28ef0d932f..3c8df0a076 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -178,14 +178,14 @@ main() {
conf.CHECK_CODE('''
return sizeof(blkcnt_t) == 4 ? 0 : 1''',
'SIZEOF_BLKCNT_T_4', execute=True,
- headers='sys/types.h sys/stat.h unistd.h',
+ headers='replace.h sys/types.h sys/stat.h unistd.h',
msg="Checking whether blkcnt_t is 32 bit")
if "HAVE_BLKCNT_T" in conf.env:
conf.CHECK_CODE('''
return sizeof(blkcnt_t) == 8 ? 0 : 1''',
'SIZEOF_BLKCNT_T_8', execute=True,
- headers='sys/types.h sys/stat.h unistd.h',
+ headers='replace.h sys/types.h sys/stat.h unistd.h',
msg="Checking whether blkcnt_t is 64 bit")
# Check for POSIX capability support